Skip to content

Instantly share code, notes, and snippets.

View zxq9's full-sized avatar

Craig Everett zxq9

View GitHub Profile
-module(ertorrent_torrent_ssup).
-behaviour(supervisor).
-export([start_link/0, init/1]).
start_link() ->
supervisor:start_link(ertorrent_torrent_ssup, []).
init(_Arg) ->
RestartStrategy = {one_for_one, 4, 5},
ServiceSup = #{id => ertorrent_torrent_sup,