- Fix 9 compilation errors in processing.rs: - memory_mb typo (mem_mb) - download_json return type - Chunk from_row (use row_to_json) - ProgressResponse/SystemHealthInfo/ProcessorProgressInfo Deserialize - Remove flush_all/flush (methods don't exist) - Add pub mod processing to api/mod.rs - Merge processing::processing_routes() into server router
26 lines
496 B
Rust
26 lines
496 B
Rust
pub mod agent_api;
|
|
pub mod agent_search;
|
|
pub mod auth;
|
|
pub mod docs;
|
|
pub mod files;
|
|
pub mod five_w1h_agent_api;
|
|
pub mod processing;
|
|
pub mod health;
|
|
pub mod identities;
|
|
pub mod identity_agent_api;
|
|
pub mod identity_api;
|
|
pub mod identity_binding;
|
|
pub mod media_api;
|
|
pub mod middleware;
|
|
pub mod scan;
|
|
pub mod search;
|
|
pub mod server;
|
|
pub mod tmdb_api;
|
|
pub mod trace_agent_api;
|
|
pub mod types;
|
|
pub mod universal_search;
|
|
pub mod visual_chunk_search;
|
|
pub mod visual_search;
|
|
|
|
pub use server::start_server;
|