convert to vundle

This commit is contained in:
Barak Michener 2014-05-31 17:02:26 -04:00
parent 7ed2df98b6
commit b5a5ab4d5b
14 changed files with 1997 additions and 2 deletions

View file

@ -0,0 +1,20 @@
-module(mmc_logmon_sup).
-behaviour(supervisor).
-export([init/1]).
init(_) ->
{ok, {
{one_for_one, 5, 1},
[
{listener,
{aaa, start_link, []},
permanent, 100, worker,
[aaa]
},
{server,
{bbb, start_link, []},
permanent, 100, worker,
[bbb]
}
]
}}.