mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 04:10:24 +00:00
8 lines
116 B
Erlang
8 lines
116 B
Erlang
%% This module does not do anything.
|
|
|
|
-module(default_h).
|
|
|
|
-export([init/2]).
|
|
|
|
init(Req, Opts) ->
|
|
{ok, Req, Opts}.
|