mirror of
https://github.com/moghtech/komodo.git
synced 2026-09-13 00:01:18 +00:00
11 lines
175 B
Rust
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 },
|
|
}
|