From 60dd44825f2296a9ff194199028790a3314fe609 Mon Sep 17 00:00:00 2001 From: Warren Lo Date: Thu, 19 Mar 2026 01:08:35 +0800 Subject: [PATCH] Update lib.rs with new module structure --- src/lib.rs | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 201480b..a687b8c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,10 @@ -//! MoMentry Playground - 統一媒體播放與監控平台 +//! MoMentry Playground +//! +//! Unified media player with ASR/YOLO/Chunks overlay support pub mod player; -pub mod ui; -pub mod viewer; -pub mod api; -pub mod input; +pub mod overlay; +pub mod web; +pub mod config; + +pub use config::Config;