Skip to content

Instantly share code, notes, and snippets.

@KamilLelonek
Created July 20, 2019 08:16
Show Gist options
  • Select an option

  • Save KamilLelonek/671c9695f8d433af099d1c3fedaf8cb5 to your computer and use it in GitHub Desktop.

Select an option

Save KamilLelonek/671c9695f8d433af099d1c3fedaf8cb5 to your computer and use it in GitHub Desktop.
defmodule PlugForward do
use Plug.Router
plug(:match)
plug(:dispatch)
forward(
"/health/live",
to: Liveness
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment