Packages

Usher Web is a web interface for the Usher invitation link management library.

Current section

Files

Jump to
usher_web lib usher web application.ex
Raw

lib/usher/web/application.ex

defmodule Usher.Web.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = []
Supervisor.start_link(children, strategy: :one_for_one, name: __MODULE__)
end
end