cirun-agent 0.8.0

Cirun on-prem agent: provisions and manages CI/CD runners via Docker, Meda (Linux KVM VMs), and Lume (macOS VMs).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Re-export all public items from submodules
pub mod client;
pub mod errors;
pub mod models;
pub mod pull;
pub mod setup;

// Re-export the main types for easier access
pub use self::client::LumeClient;
pub use self::models::*;
// Only re-export specific error types as needed
pub use self::setup::*;
// Export specific functions from pull module
pub use self::pull::{
    check_template_exists, create_template, find_matching_template, generate_template_name,
};