1//! dipecsd — 入口点。实际逻辑在 lib.rs。 2 3#[tokio::main] 4async fn main() -> anyhow::Result<()> { 5 aios_daemon::run().await 6}