d0f617820c
Collects spawns into a hashmap, then on next update if spawn exists in hash map, don't bother to run another update
11 lines
171 B
Rust
11 lines
171 B
Rust
#[derive(Debug, Clone)]
|
|
pub enum DockerMessage {
|
|
Update,
|
|
Start(String),
|
|
Restart(String),
|
|
Pause(String),
|
|
Unpause(String),
|
|
Stop(String),
|
|
Quit,
|
|
}
|