jammi-server 0.12.0

OSS Jammi server binary: Arrow Flight SQL, SessionService, TriggerService, and health/metrics endpoints
Documentation
//! gRPC services exposed by `jammi-server`.
//!
//! The wire surface is hybrid (per ADR-01): Flight SQL retains query/result;
//! typed gRPC services handle session management and (later) trigger
//! streams. Both Flight SQL and gRPC services share a
//! [`session::SessionStore`] via the [`session::TenantInterceptor`] so a
//! tenant bound through `SessionService.SetTenant` is observable on any
//! downstream request — including SQL queries issued against Flight SQL.
//!
//! Proto generated by `build.rs` lives under [`proto`].

pub mod session;
pub mod trigger;

/// Proto-generated types for the `jammi.v1` API surface.
pub mod proto {
    pub mod session {
        tonic::include_proto!("jammi.v1.session");
    }
    pub mod trigger {
        tonic::include_proto!("jammi.v1.trigger");
    }
}