Skip to content

Instantly share code, notes, and snippets.

@cybrox
Created March 20, 2019 15:34
Show Gist options
  • Save cybrox/afa99dc29ae83bd33ddf464b02921bec to your computer and use it in GitHub Desktop.
Save cybrox/afa99dc29ae83bd33ddf464b02921bec to your computer and use it in GitHub Desktop.
phx-ete3.ex
defmodule MyApp.Plug.TestEndToEnd do
use Plug.Router
plug :match
plug :dispatch
match _, do: send_resp(conn, 404, "not found")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment