summaryrefslogtreecommitdiff
path: root/src/dynomite.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/dynomite.erl')
-rw-r--r--src/dynomite.erl22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/dynomite.erl b/src/dynomite.erl
deleted file mode 100644
index bb50986b..00000000
--- a/src/dynomite.erl
+++ /dev/null
@@ -1,22 +0,0 @@
-%%% @doc convenience start/stop functions for Dynomite
-%%%
--module(dynomite).
--author('Brad Anderson <brad@cloudant.com>').
-
--export([start/0, stop/0, restart/0]).
-
-
-%% @doc start Dynomite app with no args, for -s at the command-line
-start() ->
- application:start(dynomite).
-
-
-%% @doc stops the Dynomite application
-stop() ->
- application:stop(dynomite).
-
-
-%% @doc restart Dynomite app, with no args
-restart() ->
- stop(),
- start().