blob: eb31aa81d9204e5388d11f289a13fc5a1a58ab86 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
%% Feel free to use, reuse and abuse the code in this file.
-module(http_handler).
-export([init/2]).
init(Req, Opts) ->
Headers = proplists:get_value(headers, Opts, #{}),
Body = proplists:get_value(body, Opts, "http_handler"),
{ok, cowboy_req:reply(200, Headers, Body, Req), Opts}.
|