summaryrefslogtreecommitdiffstats
path: root/src/core/ephraim_accounts.erl
blob: a35c4861de42c206ea1444688c6c69d3b7783674 (plain)
1
2
3
4
5
6
7
8
9
10
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]}]}}.