Files
open-xiaoai/packages/client-v2/src/bin/server.rs
T

11 lines
176 B
Rust
Raw Normal View History

2026-01-02 10:22:16 +08:00
use anyhow::Result;
#[tokio::main]
async fn main() -> Result<()> {
#[cfg(feature = "app")]
{
xiao::app::server::entry::run_server().await?;
}
Ok(())
}