Files
self 40310b26ea
CI / Test (push) Failing after 20s
feat: add trust plugin foundation
Introduce the Trust plugin as the federation provider for tribe identity and hello handshakes, with synced Ash resources for remote tribes and tribe relationships plus an admin LiveView for trust management.
2026-05-27 22:49:44 +02:00

22 lines
582 B
Elixir

defmodule TribeOne.TribesPlugin.Trust.Application do
@moduledoc """
OTP Application for this plugin.
Uncomment the `mod:` entry in mix.exs to activate this supervision tree.
Add plugin-specific GenServers, workers, or supervisors as children here.
"""
use Application
@impl true
def start(_type, _args) do
children = [
# Add your supervised processes here, e.g.:
# {TribeOne.TribesPlugin.Trust.Worker, []}
]
opts = [strategy: :one_for_one, name: TribeOne.TribesPlugin.Trust.Supervisor]
Supervisor.start_link(children, opts)
end
end