defmodule TuskerPushWeb.Router do use TuskerPushWeb, :router pipeline :api do plug :accepts, ["json"] end scope "/api", TuskerPushWeb do pipe_through :api end end