Packages

Remote file storage bootstrap library with dev conveniences

Current section

Files

Jump to
filey lib filey application.ex
Raw

lib/filey/application.ex

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