Expand description
ServiceModule Integration Example
This example demonstrates the complete ServiceModule system functionality, showing how modules can organize and register related services with dependency management and proper initialization order.
Structs§
- Business
Logic Module - Business logic module - provides business services
- Config
Service - Configuration service for core infrastructure
- Core
Infra Module - Core infrastructure module - provides logging, config, etc.
- Data
Access Module - Data access module - provides repositories and data services
- Logging
Service - Logging service for core infrastructure
- User
Repository - User repository interface - would typically be a trait in a real application
- User
Service - User service that depends on UserRepository
Functions§
- demonstrate_
module_ system - Demonstrates the complete ServiceModule integration