22 lines
No EOL
511 B
Rust
22 lines
No EOL
511 B
Rust
// Include generated protobuf code
|
|
include!("databuild.rs");
|
|
|
|
// Event log module
|
|
pub mod event_log;
|
|
|
|
// Orchestration module
|
|
pub mod orchestration;
|
|
|
|
// Service module
|
|
pub mod service;
|
|
|
|
// Repository pattern implementations
|
|
pub mod repositories;
|
|
|
|
pub mod mermaid_utils;
|
|
|
|
// Re-export commonly used types from event_log
|
|
pub use event_log::{BuildEventLog, BuildEventLogError, create_build_event_log};
|
|
|
|
// Re-export orchestration types
|
|
pub use orchestration::{BuildOrchestrator, BuildResult, OrchestrationError}; |