Mix.Tasks.Phoenix.Routes
Prints all routes for the default or a given router.
$ mix phoenix.routes
$ mix phoenix.routes MyApp.AnotherRouterThe default router is inflected from the application
name unless a configuration named :app_namespace
is set inside your application configuration. For example,
the configuration:
config :my_app,
  app_namespace: My.Appwill exhibit the routes for My.App.Router when this
task is invoked without arguments.
Umbrella projects do not have a default router and therefore always expect a router to be given.
Summary↑
| run(args) | Callback implementation of  | 
Functions
Callback implementation of Mix.Task.run/1.