Skip to content

Instantly share code, notes, and snippets.

View luizpvas's full-sized avatar

Luiz Paulo de Vasconcellos luizpvas

View GitHub Profile
defmodule MyRouter do
use Plug.Router
# Starts the server
def start do
Plug.Adapters.Cowboy.http MyRouter, []
end
plug :my_handle # custom plug
plug :match