pub mod shared;
pub mod tenants;
pub mod agents;
pub mod providers;
pub mod tools;
pub mod schedules;
pub mod triggers;
pub mod pipelines;
pub mod billing;
pub mod mcp;
pub mod fleet_secrets;
pub mod connectors;
pub mod health;
pub mod audit;
pub mod cordis;
pub use shared::*;
pub use tenants::routes as tenants_routes;
pub use agents::routes as agents_routes;
pub use providers::routes as providers_routes;
pub use tools::routes as tools_routes;
pub use schedules::routes as schedules_routes;
pub use triggers::routes as triggers_routes;
pub use pipelines::routes as pipelines_routes;
pub use billing::routes as billing_routes;
pub use mcp::routes as mcp_routes;
pub use fleet_secrets::routes as fleet_secrets_routes;
pub use connectors::routes as connectors_routes;
pub use health::routes as health_routes;
pub use audit::routes as audit_routes;
#[allow(dead_code)]
pub async fn _admin_mod_dummy() {}