aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/empty_h.erl
blob: 7b634cb3f4b6ef0f1666e4e3626b525892e49cec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
%% Feel free to use, reuse and abuse the code in this file.

-module(empty_h).

-export([init/2]).

init(Req, State) ->
	{ok, cowboy_req:reply(200, #{
		<<"content-type">> => <<"text/plain">>
	}, Req), State}.