Skip to content

Instantly share code, notes, and snippets.

@essen
Created February 8, 2016 11:07
Show Gist options
  • Save essen/7d60d9817ded0d949202 to your computer and use it in GitHub Desktop.
Save essen/7d60d9817ded0d949202 to your computer and use it in GitHub Desktop.
-module(map_req).
-export([init/2]).
init(#{method := <<"GET">>} = Req, State) ->
cowboy_req:reply(204, Req),
{ok, Req, State}.
-module(rec_req).
-export([init/2]).
-include_lib("cowboy/include/http_req.hrl").
init(#http_req{method = <<"GET">>} = Req, State) ->
cowboy_req:reply(204, Req),
{ok, Req, State}.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment