//! Domain types and service logic — protocol-agnostic. //! //! These types define the server's business logic independently of any //! serialization format (Cap'n Proto, Protobuf). RPC handlers translate //! wire-format messages into these types, call service functions, and //! translate the results back. pub mod types; pub mod auth; pub mod delivery; pub mod keys; pub mod channels; pub mod users; pub mod blobs; pub mod devices; pub mod groups; pub mod p2p; pub mod account; pub mod moderation; pub mod notification; pub mod rate_limit; pub mod recovery;