chore: 测试播放和录音

This commit is contained in:
Del Wang
2026-01-02 17:23:24 +08:00
parent 24b3fdddf8
commit a2d06958e1
24 changed files with 712 additions and 1353 deletions
+5 -6
View File
@@ -1,10 +1,9 @@
use anyhow::Result;
use xiao::app::client::Client;
use std::sync::Arc;
#[tokio::main]
async fn main() -> Result<()> {
#[cfg(feature = "app")]
{
xiao::app::client::entry::run_client().await?;
}
async fn main() -> anyhow::Result<()> {
let client = Arc::new(Client::new());
client.run().await?;
Ok(())
}