convert to vundle
This commit is contained in:
parent
7ed2df98b6
commit
b5a5ab4d5b
14 changed files with 1997 additions and 2 deletions
20
.vim/bundle/Vundle.vim/test/files/test.erl
Normal file
20
.vim/bundle/Vundle.vim/test/files/test.erl
Normal 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]
|
||||
}
|
||||
]
|
||||
}}.
|
||||
Loading…
Add table
Add a link
Reference in a new issue