1
0
mirror of https://github.com/elisspace/dotfiles.git synced 2026-08-29 15:43:57 +00:00
Files
dotfiles/dot_vim/bundle/Vundle.vim/test/files/test.erl
2022-06-13 09:59:13 -04:00

21 lines
423 B
Erlang

-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]
}
]
}}.