Current section

Files

Jump to
persistent_ets lib application.ex
Raw

lib/application.ex

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