mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-09-13 02:54:26 +08:00
init
This commit is contained in:
12
src/web/mod.rs
Normal file
12
src/web/mod.rs
Normal 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;
|
||||
Reference in New Issue
Block a user