refactor: 调整模块位置

This commit is contained in:
Del Wang
2026-01-02 10:22:16 +08:00
parent 4d459afd28
commit ef28121f5d
15 changed files with 72 additions and 14 deletions
@@ -0,0 +1,6 @@
use anyhow::Result;
pub async fn run_server() -> Result<()> {
println!("Hello, Server!");
Ok(())
}
+1
View File
@@ -0,0 +1 @@
pub mod entry;