diff options
Diffstat (limited to 'src/fabric.erl')
-rw-r--r-- | src/fabric.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fabric.erl b/src/fabric.erl new file mode 100644 index 00000000..d588265f --- /dev/null +++ b/src/fabric.erl @@ -0,0 +1,6 @@ +-module(fabric). + +-export([create_db/2]). + +create_db(DbName, Options) -> + fabric_create:create_db(DbName, Options). |