Packages

Elixir framework to run distributed, fault-tolerant variant of Agent.

Current section

Files

Jump to
dist_agent lib dist_agent application.ex
Raw

lib/dist_agent/application.ex

use Croma
defmodule DistAgent.Application do
use Application
@impl true
def start(_type, _args) do
children = [
DistAgent.Quota.Reporter,
DistAgent.TickSender,
]
Supervisor.start_link(children, [strategy: :one_for_one])
end
end