Skip to main content

talos_certifier/
lib.rs

1pub mod certifier;
2pub mod config;
3pub mod core;
4pub mod errors;
5pub mod healthcheck;
6pub mod model;
7pub mod ports;
8pub mod services;
9pub mod talos_certifier_service;
10
11pub use crate::core::{ChannelMessage, SystemMessage};
12pub use certifier::Certifier;
13pub use certifier::CertifierCandidate;
14
15/// Helper functions for building payload and other common test utils
16/// TODO: GK - If this is used across multiple packages and if this grows to be too big,
17/// it would be better to move it to a new package and import in other projects as dev dependency.
18pub mod test_helpers;