summaryrefslogtreecommitdiffstats
path: root/src/core/ephraim_accounts.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ephraim_accounts.erl')
-rw-r--r--src/core/ephraim_accounts.erl11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/ephraim_accounts.erl b/src/core/ephraim_accounts.erl
new file mode 100644
index 0000000..a35c486
--- /dev/null
+++ b/src/core/ephraim_accounts.erl
@@ -0,0 +1,11 @@
+-module(ephraim_accounts).
+-behaviour(supervisor).
+-export([start_link/0]).
+-export([init/1]).
+
+start_link() ->
+ supervisor:start_link(?MODULE, []).
+
+init(_Args) ->
+ {ok, {{one_for_one, 1, 60},
+ [{account, {ephraim_account, start_link, []}, permanent, infinity, supervisor, [ephraim_account]}]}}.