2026-03-13 00:18:14 +00:00
|
|
|
pub mod actors;
|
|
|
|
|
pub mod api;
|
|
|
|
|
pub mod cache;
|
|
|
|
|
pub mod error;
|
|
|
|
|
#[cfg(feature = "mcp")]
|
|
|
|
|
pub mod mcp;
|
|
|
|
|
#[cfg(feature = "nats")]
|
|
|
|
|
pub mod nats;
|
|
|
|
|
pub mod notifications;
|
|
|
|
|
pub mod registry;
|
|
|
|
|
pub mod search;
|
|
|
|
|
#[cfg(feature = "db")]
|
|
|
|
|
pub mod seed;
|
|
|
|
|
#[cfg(feature = "ui")]
|
|
|
|
|
pub mod session;
|
feat: unified auth model, project onboarding, install pipeline, config management
The full scope across this batch: POST /sessions key→token exchange, SessionStore dual-index with revoke_by_id, CLI Bearer injection (ONTOREF_TOKEN), ontoref setup
--gen-keys, install scripts, daemon config form roundtrip, ADR-004/005, on+re self-description update (fully-self-described), and landing page refresh.
2026-03-13 20:56:31 +00:00
|
|
|
pub mod sync;
|
2026-03-13 00:18:14 +00:00
|
|
|
#[cfg(feature = "ui")]
|
|
|
|
|
pub mod ui;
|
|
|
|
|
pub mod watcher;
|