barbacane-control 0.6.1

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

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

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

#[cfg(test)]
mod tests;