17 lines
No EOL
426 B
Rust
17 lines
No EOL
426 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;
|
|
|
|
// 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}; |