Packages
Development utilities for Nerves devices.
Retired package: Deprecated - All functionality is now bundled with the VSCode extension.
Current section
Files
Jump to
Current section
Files
lib/nerves_dev_server_web/router.ex
defmodule NervesDevServerWeb.Router do
@moduledoc false
use NervesDevServerWeb, :router
pipeline :api do
plug :accepts, ["json"]
end
scope "/", NervesDevServerWeb.Controllers do
pipe_through :api
get "/", IndexController, :index
end
end