mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
12 lines
273 B
Erlang
12 lines
273 B
Erlang
%% Feel free to use, reuse and abuse the code in this file.
|
|
|
|
%% @doc Hello world handler.
|
|
-module(toppage_h).
|
|
|
|
-export([init/2]).
|
|
|
|
init(Req0, Opts) ->
|
|
Req = cowboy_req:reply(200, #{
|
|
<<"content-type">> => <<"text/plain">>
|
|
}, <<"Hello world!">>, Req0),
|
|
{ok, Req, Opts}.
|