[feat] introduced server and cli crates with foundational HTTP server and CLI implementation, including routing, health check, and configuration setup

This commit is contained in:
2025-08-20 09:58:21 +02:00
parent 16167d18ff
commit d37daf02f6
12 changed files with 457 additions and 1275 deletions

View File

@@ -1,2 +1,5 @@
pub mod api;
pub use api::*;
//! API-first core: shared types, DTOs, service traits, configuration.
pub mod config;
pub mod types;
pub mod services;