This commit is contained in:
mofeng-git
2025-12-28 18:19:16 +08:00
commit d143d158e4
771 changed files with 220548 additions and 0 deletions

12
src/web/mod.rs Normal file
View File

@@ -0,0 +1,12 @@
mod audio_ws;
mod routes;
mod handlers;
mod static_files;
mod ws;
pub use audio_ws::audio_ws_handler;
pub use routes::create_router;
// StaticAssets is only available in release mode (embedded assets)
#[cfg(not(debug_assertions))]
pub use static_files::StaticAssets;
pub use ws::ws_handler;