Update events

This commit is contained in:
Werner
2022-04-19 17:44:53 -03:00
parent cb7be7880f
commit 3c4409140c
10 changed files with 269 additions and 35 deletions

15
broken/erws_app.erl Normal file
View File

@ -0,0 +1,15 @@
%% Feel free to use, reuse and abuse the code in this file.
%% @private
-module(erws_app).
-behaviour(application).
%% API.
-export([start/2, stop/1]).
%% API.
start(_Type, _Args) ->
erws_sup:start_link().
stop(_State) ->
ok = cowboy:stop_listener(http).