toppage_handler.erl 279 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(Req0, Opts) ->
  6. Req = cowboy_req:reply(200, #{
  7. <<"content-type">> => <<"text/plain">>
  8. }, <<"Hello world!">>, Req0),
  9. {ok, Req, Opts}.