aboutsummaryrefslogtreecommitdiff
path: root/src/pf_route_sup.erl
diff options
context:
space:
mode:
authorJordan Bracco <href@random.sh>2021-11-06 22:11:00 +0100
committerJordan Bracco <href@random.sh>2021-11-06 22:11:00 +0100
commit756e5aaf9deb0900962f91ebac30e8a756884717 (patch)
tree42036da0c0cba79ff9353826e7d53013bd3a2a81 /src/pf_route_sup.erl
re-initial commitHEADmain
Diffstat (limited to 'src/pf_route_sup.erl')
-rw-r--r--src/pf_route_sup.erl12
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}}.