Initial commit

This commit is contained in:
2023-02-16 23:40:19 +00:00
commit b0a7da3ddc
27 changed files with 1133 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
defmodule PhoenixApiTemplateWeb.Router do
use PhoenixApiTemplateWeb, :router
pipeline :api do
plug :accepts, ["json"]
end
scope "/api", PhoenixApiTemplateWeb do
pipe_through :api
end
end