aboutsummaryrefslogtreecommitdiffstats
path: root/examples/hello_world/src/toppage_handler.erl
blob: e8e672e83a70dd391fc17c3d3d1579e3b73e7f05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
%% Feel free to use, reuse and abuse the code in this file.

%% @doc Hello world handler.
-module(toppage_handler).

-export([init/2]).

init(Req, Opts) ->
	Req2 = cowboy_req:reply(200, [
		{<<"content-type">>, <<"text/plain">>}
	], <<"Hello world!">>, Req),
	{ok, Req2, Opts}.