1 2 3 4 5 6 7 8 9 10 11
//! Symposium ACP Proxy - Main entry point use sacp::Component; #[tokio::main] async fn main() -> anyhow::Result<()> { symposium_acp_proxy::Symposium::new() .serve(sacp_tokio::Stdio::new()) .await?; Ok(()) }