//! Server module for monocore.
//!
//! This module implements a REST API server that provides HTTP endpoints for managing
//! monocore services. The server is stateless and uses an Orchestrator instance for
//! all state management.
//!
//! The server provides the following endpoints:
//! - POST /up - Start services with provided configuration
//! - POST /down - Stop running services
//! - GET /status - Get status of all services
//! - POST /remove - Remove service files
//--------------------------------------------------------------------------------------------------
// Exports
//--------------------------------------------------------------------------------------------------
pub use *;
pub use *;
pub use *;
pub use *;