mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-03-23 11:17:49 +01:00
12 lines
177 B
Elixir
12 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
|