Current section

Files

Jump to
combo_new templates combo_saas lib user_api router.ex
Raw

templates/combo_saas/lib/user_api/router.ex

defmodule ComboSaaS.UserAPI.Router do
use ComboSaaS.UserAPI, :router
pipeline :api do
plug :accepts, ["json"]
end
scope "/v1", ComboSaaS.UserAPI do
pipe_through :api
get "/", HomeController, :welcome
end
end