Current section

Files

Jump to
ecto_struct_cachex lib application.ex
Raw

lib/application.ex

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