1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
use std::path::PathBuf;

#[derive(Debug, Clone)]
pub enum Cmd {
    Up { detached: bool },
    Down,
    Stop,
    Eject,
    Exec { trailing: Vec<String>, user: String },
    Doctor,
    Pull { trailing: Vec<String> },
    DBImport { path: PathBuf },
    DBDump,
    PassThrough { cmd: String, trailing: Vec<String> },
}