toppage_handler.erl 278 B

123456789101112
  1. %% Feel free to use, reuse and abuse the code in this file.
  2. %% @doc Hello world handler.
  3. -module(toppage_handler).
  4. -export([init/2]).
  5. init(Req, Opts) ->
  6. Req2 = cowboy_req:reply(200, [
  7. {<<"content-type">>, <<"text/plain">>}
  8. ], <<"Hello world!">>, Req),
  9. {ok, Req2, Opts}.