blob: ae75c3a373f3a8e577e94295d874ed1b93e8c68c (
plain) (
tree)
|
|
%% Feel free to use, reuse and abuse the code in this file.
-module(web_server).
%% API.
-export([start/0]).
%% API.
start() ->
ok = application:start(crypto),
ok = application:start(ranch),
ok = application:start(cowboy),
ok = application:start(web_server).
|