barbacane-control 0.8.0

Barbacane control plane — spec compilation and management CLI
//! REST API handlers for the control plane.

mod api_keys;
mod artifacts;
mod auth;
mod compilations;
mod data_planes;
mod health;
mod init;
pub(crate) mod multipart;
mod operations;
mod plugins;
mod project_plugins;
mod projects;
mod router;
mod specs;
pub mod ws;

pub use auth::AdminAuth;
pub use router::create_router;
pub use ws::ConnectionManager;

#[cfg(test)]
mod tests;