Files
erlang-ws/broken/erws_app.erl
2022-04-19 17:44:53 -03:00

16 lines
267 B
Erlang

%% 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).