mecha10-cli-core 0.6.3

Mecha10 CLI core foundation — shared types, services, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core service layer — foundation services used across CLI sub-crates

pub mod auth;
pub mod component_catalog;
pub mod config;
pub mod credentials;
pub mod project;
pub mod redis;

pub use auth::AuthService;
pub use component_catalog::ComponentCatalogService;
pub use config::ConfigService;
pub use credentials::CredentialsService;
pub use project::ProjectService;
pub use redis::RedisService;