http_handler.erl 288 B

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