Add overlay module

This commit is contained in:
2026-03-19 01:09:44 +08:00
parent 52eeaa1004
commit 22fb5dbccd

9
src/overlay/mod.rs Normal file
View File

@@ -0,0 +1,9 @@
//! Overlay module
//!
//! ASR subtitle and YOLO bbox overlay management
pub mod asr;
pub mod yolo;
pub use asr::AsrLoader;
pub use yolo::YoloLoader;