chore: 初始化 client v2

This commit is contained in:
Del Wang
2026-01-02 09:59:29 +08:00
parent aa2a5d8474
commit 4d459afd28
23 changed files with 1982 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
use anyhow::Result;
#[tokio::main]
async fn main() -> Result<()> {
#[cfg(target_os = "linux")]
{
xiao::app::entry::run_xiao().await.unwrap();
}
println!("Only support Linux");
Ok(())
}