governor-core 1.10.3

Core domain and application logic for cargo-governor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Core traits for cargo-governor
//!
//! These traits define the interfaces that must be implemented by
//! infrastructure adapters (Git, Registry, Checkpoint store, etc.)

pub mod checkpoint_store;
pub mod registry;
pub mod reversible_operation;
pub mod source_control;
pub mod version_strategy;
pub mod workflow_step;

pub use checkpoint_store::*;
pub use registry::*;
pub use reversible_operation::*;
pub use source_control::*;
pub use version_strategy::*;
pub use workflow_step::*;