Current section

Files

Jump to
mox lib mox application.ex
Raw

lib/mox/application.ex

defmodule Mox.Application do
@moduledoc false
use Application
def start(_, _) do
children = [Mox.Server]
Supervisor.start_link(children, name: Mox.Supervisor, strategy: :one_for_one)
end
end