mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-11 11:49:15 +00: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
|