forked from AkkomaGang/akkoma
11 lines
177 B
Elixir
11 lines
177 B
Elixir
defmodule Pleroma.Web.Router do
|
|
use Pleroma.Web, :router
|
|
|
|
pipeline :api do
|
|
plug :accepts, ["json"]
|
|
end
|
|
|
|
scope "/api", Pleroma.Web do
|
|
pipe_through :api
|
|
end
|
|
end
|