summaryrefslogtreecommitdiff
path: root/src/fabric.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/fabric.erl')
-rw-r--r--src/fabric.erl6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/fabric.erl b/src/fabric.erl
index d588265f..3e5d9dd8 100644
--- a/src/fabric.erl
+++ b/src/fabric.erl
@@ -1,6 +1,10 @@
-module(fabric).
--export([create_db/2]).
+-export([all_databases/1, create_db/2]).
+
+
+all_databases(Customer) ->
+ fabric_info:all_databases(Customer).
create_db(DbName, Options) ->
fabric_create:create_db(DbName, Options).