DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Binary/Service/mod.rs
1//! # Binary::Service
2//!
3//! External service startup functions called from `Binary::Main::AppLifecycle`.
4//! Each sub-module owns the full launch sequence for one service
5//! and exposes a single async `Fn()` entry point.
6
7/// Start the Vine notification broadcast service.
8pub mod VineStart;
9
10/// Start the Cocoon sandboxed-extension host service.
11pub mod CocoonStart;
12
13/// Load and validate the initial application configuration from disk.
14pub mod ConfigurationInitialize;
15
16/// Start the Air real-time collaboration service.
17pub mod AirStart;