aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/proxied_h.erl
blob: d5d4690414e4cc8ae621135ad073a295cd487586 (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(proxied_h).

-export([init/2]).

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