mirror of
https://github.com/moghtech/komodo.git
synced 2026-09-13 08:01:17 +00:00
12 lines
214 B
Rust
12 lines
214 B
Rust
pub mod aws;
|
|
|
|
#[derive(Debug)]
|
|
pub enum BuildCleanupData {
|
|
/// Nothing to clean up
|
|
Server,
|
|
/// Cleanup Periphery connection
|
|
Url,
|
|
/// Clean up AWS instance
|
|
Aws { instance_id: String, region: String },
|
|
}
|