Current section

Files

Jump to
nova include nova_router.hrl
Raw

include/nova_router.hrl

%% Nova Routing value
-record(nova_handler_value, {
app :: atom(),
module :: atom(),
function :: atom(),
plugins = [] :: list(),
secure = false :: false | {Mod :: atom(), Fun :: atom()},
extra_state :: any()
}).
-record(cowboy_handler_value, {
app :: atom(),
handler :: atom(),
arguments :: [any()],
plugins = [] :: list(),
secure = false :: false | {Mod :: atom(), Fun :: atom()}
}).