chunked_hello_world.erl 252 B

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