heldar-kernel 0.1.0

Heldar kernel — media/DVR control plane, perception ingest + sampler, zone engine, auth, and the worker SDK contract. The open, domain-agnostic platform that domain apps build on.
Documentation
use axum::Router;

use crate::state::AppState;

pub mod ai;
pub mod auth;
pub mod cameras;
pub mod discovery;
pub mod health;
pub mod liveview;
pub mod metrics;
pub mod playback;
pub mod recordings;
pub mod system;
pub mod zones;

/// Assemble the kernel API router (absolute paths, mounted at root by the composing server). The
/// auth admin surface stays here for now; domain apps (Campus Entry, …) merge their own routers in
/// the server binary.
pub fn api_router() -> Router<AppState> {
    Router::new()
        .merge(system::router())
        .merge(cameras::router())
        .merge(recordings::router())
        .merge(playback::router())
        .merge(liveview::router())
        .merge(health::router())
        .merge(discovery::router())
        .merge(ai::router())
        .merge(zones::router())
        .merge(auth::router())
}