chunked_hello_world.erl 220 B

123456789101112
  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(cowboy),
  8. ok = application:start(chunked_hello_world).