blob: d3a3694ec534a71385895beba04052f5d2a6fb55 (
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, [foo_account]}, permanent, infinity, supervisor, [ephraim_account]}]}}.
|