summaryrefslogtreecommitdiff
path: root/priv/templates/sup.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-04-28 19:50:55 -0500
committerTristan Sloughter <t@crashfast.com>2015-04-29 09:27:55 -0500
commit2e5496f5f5f3c39bd1e23b4601d1e89d4d2c9767 (patch)
treea3bf4fb7fbd37291161ee62bfd2b78171f75fdef /priv/templates/sup.erl
parent212b23b889c0189d3f609d5a16781f6acbadf824 (diff)
remove use of erlydtl in rebar
Diffstat (limited to 'priv/templates/sup.erl')
-rw-r--r--priv/templates/sup.erl35
1 files changed, 35 insertions, 0 deletions
diff --git a/priv/templates/sup.erl b/priv/templates/sup.erl
new file mode 100644
index 0000000..a2e7209
--- /dev/null
+++ b/priv/templates/sup.erl
@@ -0,0 +1,35 @@
+%%%-------------------------------------------------------------------
+%% @doc {{name}} top level supervisor.
+%% @end
+%%%-------------------------------------------------------------------
+
+-module({{name}}_sup).
+
+-behaviour(supervisor).
+
+%% API
+-export([start_link/0]).
+
+%% Supervisor callbacks
+-export([init/1]).
+
+-define(SERVER, ?MODULE).
+
+%%====================================================================
+%% API functions
+%%====================================================================
+
+start_link() ->
+ supervisor:start_link({local, ?SERVER}, ?MODULE, []).
+
+%%====================================================================
+%% Supervisor callbacks
+%%====================================================================
+
+%% Child :: {Id,StartFunc,Restart,Shutdown,Type,Modules}
+init([]) ->
+ {ok, { {one_for_all, 0, 1}, []} }.
+
+%%====================================================================
+%% Internal functions
+%%====================================================================