Current section
Files
Jump to
Current section
Files
lib/application.ex
defmodule NotFoundRoute.Application do
@moduledoc false
use Application
def start(_type, _args) do
opts = [strategy: :one_for_one, name: NotFoundRoute.Supervisor]
Supervisor.start_link([], opts)
end
end