summaryrefslogtreecommitdiff
path: root/src/fabric.erl
diff options
context:
space:
mode:
authorBrad Anderson <brad@cloudant.com>2010-05-28 15:25:15 -0400
committerAdam Kocoloski <adam@cloudant.com>2010-05-28 15:31:47 -0400
commitf0161d3167265b6b4e1aaf5755799417c451b415 (patch)
tree042159c0fd9630b2c697c9648384b92f146c1235 /src/fabric.erl
parent46273631d3496586bfb1fa1713c2e9b8484bec61 (diff)
split fabric_db into dedicated modules
Diffstat (limited to 'src/fabric.erl')
-rw-r--r--src/fabric.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fabric.erl b/src/fabric.erl
index 399b76d6..9fdea34c 100644
--- a/src/fabric.erl
+++ b/src/fabric.erl
@@ -16,16 +16,16 @@ db_path(RawUri, Customer) ->
Path.
all_databases(Customer) ->
- fabric_db:all_databases(Customer).
+ fabric_all_databases:all_databases(Customer).
get_db_info(DbName, Customer) ->
- fabric_db:get_db_info(dbname(DbName), Customer).
+ fabric_get_db_info:get_db_info(dbname(DbName), Customer).
create_db(DbName, Options) ->
- fabric_db:create_db(dbname(DbName), Options).
+ fabric_create_db:create_db(dbname(DbName), Options).
delete_db(DbName, Options) ->
- fabric_db:delete_db(dbname(DbName), Options).
+ fabric_delete_db:delete_db(dbname(DbName), Options).