wsio/src/wsio_sup.erl
Umgeher Torgersen 052b0b25c7 version: 0.1.0
+ ws server at "/" and port 11000
+ simple ws handler casting to wsbus
2024-11-27 15:59:10 +00:00

12 lines
226 B
Erlang

-module(wsio_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}}.