0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 20:30:23 +00:00
cowboy/test/http_SUITE_data/http_handler.erl

11 lines
288 B
Erlang
Raw Normal View History

%% 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}.