//! AppView library surface. The binary (`src/main.rs`) wires the HTTP //! server, firehose ingestion, and the handle-sync worker; integration //! tests under `tests/` import from here so they can build a worker //! against a stub resolver without booting the binary. pub mod auth; pub mod firehose; pub mod handle_sync; pub mod indexer; pub mod ingest; pub mod routes; pub mod state;