Current section
Files
Jump to
Current section
Files
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