echo_get.erl 263 B

1234567891011121314
  1. %% Feel free to use, reuse and abuse the code in this file.
  2. -module(echo_get).
  3. %% API.
  4. -export([start/0]).
  5. %% API.
  6. start() ->
  7. ok = application:start(crypto),
  8. ok = application:start(ranch),
  9. ok = application:start(cowboy),
  10. ok = application:start(echo_get).