## v0.9.20260325_144654 ### Features - API Key Authentication System - Job Worker System - V2 Backup Versioning ### Bug Fixes - get_processor_results_by_job column mapping Co-authored-by: OpenCode
14 lines
415 B
Rust
14 lines
415 B
Rust
pub mod api_client;
|
|
pub mod asr_overlay;
|
|
pub mod chunk_selector;
|
|
pub mod player;
|
|
pub mod selector;
|
|
|
|
pub use api_client::{
|
|
ApiClient, LookupResponse, RegisterResponse, SearchResponse, SearchResult, VideoInfo,
|
|
};
|
|
pub use asr_overlay::{AsrData, AsrOverlay, AsrSegment};
|
|
pub use chunk_selector::{ChunkEntry, ChunkSelector};
|
|
pub use player::{play_video, PlayerConfig};
|
|
pub use selector::{VideoEntry, VideoSelector};
|