architex/lib/matrix_server_web/router.ex

12 lines
189 B
Elixir
Raw Normal View History

2021-06-22 12:09:25 +00:00
defmodule MatrixServerWeb.Router do
use MatrixServerWeb, :router
pipeline :api do
plug :accepts, ["json"]
end
scope "/api", MatrixServerWeb do
pipe_through :api
end
end