Current section

Files

Jump to
prometheus_timer lib prometheus_timer web router.ex
Raw

lib/prometheus_timer/web/router.ex

defmodule PrometheusTimer.Web.Router do
@moduledoc false
use Plug.Router
plug PrometheusTimer.Web.Exporter
plug :match
plug :dispatch
match _ do
conn
|> send_resp(404, "not found")
|> halt()
end
end