diff options
| author | Tristan Sloughter <t@crashfast.com> | 2014-09-16 19:36:04 -0500 |
|---|---|---|
| committer | Tristan Sloughter <t@crashfast.com> | 2014-09-16 19:36:04 -0500 |
| commit | 884d298291e64fad99f096ee82018b568e0985f2 (patch) | |
| tree | 2251d30abe9bf5890d2fd7506e74979149307df4 /priv/templates/simplesup.erl | |
| parent | 71d9500997930a43f30bce863e05f3dbaa4fd3f4 (diff) | |
update templating
Diffstat (limited to 'priv/templates/simplesup.erl')
| -rw-r--r-- | priv/templates/simplesup.erl | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/priv/templates/simplesup.erl b/priv/templates/simplesup.erl deleted file mode 100644 index 0e3a1de..0000000 --- a/priv/templates/simplesup.erl +++ /dev/null @@ -1,37 +0,0 @@ -%%%------------------------------------------------------------------- -%% @copyright {{copyright_holder}} ({{copyright_year}}) -%% @author {{author_name}} <{{author_email}}> -%% @doc {{supid}} supervisor -%% @end -%%%------------------------------------------------------------------- - --module({{appid}}_{{supid}}_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 -%%==================================================================== |
