Skip to main content

nexus_memory_web/api/
mod.rs

1//! REST API endpoints for the web dashboard
2
3mod agent;
4mod health;
5mod memories;
6mod namespaces;
7mod observability;
8mod stats;
9
10pub use agent::*;
11pub use health::*;
12pub use memories::*;
13pub use namespaces::*;
14pub use observability::*;
15pub use stats::*;