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