rest_hello_world.erl 312 B

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