Current section

Files

Jump to
ex_fake_http lib fake_http application.ex
Raw

lib/fake_http/application.ex

defmodule FakeHTTP.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [
{FakeHTTP.Server.Registry, []}
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end