View Source Mar.Route protocol (Mar v0.2.6)
Mar.Route
protocol lets you access Plug.Conn
.
defmodule MyApp do
# ...
defimpl Mar.Route do
# Mar.Route.MyApp
def before_action(route) do
# Access `route.conn` before the actions you have defined.
route
end
def after_action(route) do
# Access `route.conn` after the actions you have defined.
route
end
end
end
Summary
Types
@type t() :: term()
All the types that implement this protocol.