Skip to main content

daemon/
lib.rs

1//! Daemon-side library code: cleanup sweeper, nickname dedup saga, and
2//! the on-disk event persister.
3//!
4//! `link()` is called from the bin to ensure the `inventory` registrations
5//! generated by `#[myko_saga]` / `#[myko_command]` survive dead-code
6//! elimination. Message delivery itself is handled directly by the
7//! `marshal_entities::SendMessage` command — there's no saga in the critical path.
8
9pub mod cleanup;
10pub mod dedupe_nicknames;
11pub mod persister;
12
13pub fn link() {
14    dedupe_nicknames::link();
15}