remem/api.rs
1mod auth;
2// SP880-T1 lands shared primitives before the T2-T4 handlers consume them.
3#[allow(dead_code)]
4pub(crate) mod cursor;
5mod handlers;
6mod helpers;
7#[allow(dead_code)]
8pub(crate) mod mutation;
9mod read_resources;
10mod server;
11#[cfg(test)]
12mod tests;
13mod types;
14
15pub use auth::{ensure_api_token, load_api_token};
16pub use server::{build_router, run_api_server};
17pub use types::DbState;