Files
komodo/bin/core/src/cloud/mod.rs
T
2024-06-14 21:30:10 -07:00

11 lines
175 B
Rust

pub mod aws;
#[allow(unused)]
pub mod hetzner;
#[derive(Debug)]
pub enum BuildCleanupData {
Server { repo_name: String },
Aws { instance_id: String, region: String },
}