0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00
cowboy/test/handlers/default_h.erl
Loïc Hoguin 2a905e9bda
Add a metrics test when the handler didn't send anything
Also fix a test group to use h2 instead of HTTP/1.1.
2017-10-21 13:12:36 +01:00

8 lines
116 B
Erlang

%% This module does not do anything.
-module(default_h).
-export([init/2]).
init(Req, Opts) ->
{ok, Req, Opts}.