diff options
author | Jordan Bracco <href@random.sh> | 2021-11-06 22:11:00 +0100 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2021-11-06 22:11:00 +0100 |
commit | 756e5aaf9deb0900962f91ebac30e8a756884717 (patch) | |
tree | 42036da0c0cba79ff9353826e7d53013bd3a2a81 /src/pf_route_sup.erl |
Diffstat (limited to 'src/pf_route_sup.erl')
-rw-r--r-- | src/pf_route_sup.erl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/pf_route_sup.erl b/src/pf_route_sup.erl new file mode 100644 index 0000000..cbdf24a --- /dev/null +++ b/src/pf_route_sup.erl @@ -0,0 +1,12 @@ +-module(pf_route_sup). +-behaviour(supervisor). + +-export([start_link/0]). +-export([init/1]). + +start_link() -> + supervisor:start_link({local, ?MODULE}, ?MODULE, []). + +init([]) -> + Procs = [], + {ok, {{one_for_one, 1, 5}, Procs}}. |