Rename to aether plugin and add /aether timeline integration

This commit is contained in:
2026-04-04 20:33:51 +02:00
parent 647d5537ff
commit 78f6c11b30
14 changed files with 515 additions and 62 deletions

21
lib/aether/application.ex Normal file
View File

@@ -0,0 +1,21 @@
defmodule Aether.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.:
# {Aether.Worker, []}
]
opts = [strategy: :one_for_one, name: Aether.Supervisor]
Supervisor.start_link(children, opts)
end
end