- Add HTTP adapter layer (src/http.rs) wrapping asupersync h1 client - Migrate gitlab client, graphql, and ollama to HTTP adapter - Swap entrypoint from #[tokio::main] to RuntimeBuilder::new().block_on() - Rewrite signal handler for asupersync (RuntimeHandle::spawn + ctrl_c()) - Migrate rate limiter sleeps to asupersync::time::sleep(wall_now(), d) - Add asupersync-native HTTP integration tests - Convert timeline_seed_tests to RuntimeBuilder pattern Phases 1-3 of asupersync migration (atomic: code won't compile without all pieces).
15 lines
241 B
Rust
15 lines
241 B
Rust
pub mod cli;
|
|
pub mod core;
|
|
pub mod documents;
|
|
pub mod embedding;
|
|
pub mod gitlab;
|
|
pub mod http;
|
|
pub mod ingestion;
|
|
pub mod search;
|
|
#[cfg(test)]
|
|
pub mod test_support;
|
|
pub mod timeline;
|
|
pub mod xref;
|
|
|
|
pub use core::{Config, LoreError, Result};
|