summaryrefslogtreecommitdiff
path: root/priv/templates/app.erl
diff options
context:
space:
mode:
Diffstat (limited to 'priv/templates/app.erl')
-rw-r--r--priv/templates/app.erl27
1 files changed, 0 insertions, 27 deletions
diff --git a/priv/templates/app.erl b/priv/templates/app.erl
deleted file mode 100644
index 1c3e8f2..0000000
--- a/priv/templates/app.erl
+++ /dev/null
@@ -1,27 +0,0 @@
-%%%-------------------------------------------------------------------
-%% @doc {{appid}} public API
-%% @end
-%%%-------------------------------------------------------------------
-
--module({{appid}}_app).
-
--behaviour(application).
-
-%% Application callbacks
--export([start/2
- ,stop/1]).
-
-%%====================================================================
-%% API
-%%====================================================================
-
-start(_StartType, _StartArgs) ->
- {{appid}}_sup:start_link().
-
-%%--------------------------------------------------------------------
-stop(_State) ->
- ok.
-
-%%====================================================================
-%% Internal functions
-%%====================================================================