diff options
author | Adam Kocoloski <adam@cloudant.com> | 2010-05-28 15:45:57 -0400 |
---|---|---|
committer | Adam Kocoloski <adam@cloudant.com> | 2010-05-28 15:45:57 -0400 |
commit | 282cf6325145663f450850350471c927465abd70 (patch) | |
tree | 2dd58b6a365a96fd7c46fb9a7670aa71711cc594 /src/fabric.erl | |
parent | f0161d3167265b6b4e1aaf5755799417c451b415 (diff) |
normalizing includes
Diffstat (limited to 'src/fabric.erl')
-rw-r--r-- | src/fabric.erl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/fabric.erl b/src/fabric.erl index 9fdea34c..7f8f7e23 100644 --- a/src/fabric.erl +++ b/src/fabric.erl @@ -1,12 +1,10 @@ -module(fabric). --export([all_databases/1, create_db/2, delete_db/2, get_db_info/2, - db_path/2]). +-export([all_databases/1, create_db/2, delete_db/2, get_db_info/2, db_path/2]). -export([open_doc/3, open_revs/4, get_missing_revs/2]). -export([update_doc/3, update_docs/3]). --include("../../couch/src/couch_db.hrl"). - +-include("fabric.hrl"). % db operations -spec db_path(bstring(), bstring()) -> bstring(). |