12345678910111213141516 |
- -module(toppage_handler).
- -export([init/2]).
- -export([handle/2]).
- init(Req, Opts) ->
- {http, Req, Opts}.
- handle(Req, State) ->
- Req2 = cowboy_req:reply(200, [
- {<<"content-type">>, <<"text/plain">>}
- ], <<"Hello world!">>, Req),
- {ok, Req2, State}.
|