summaryrefslogtreecommitdiff
path: root/src/cmd/mod.rs
blob: 8ae8f70c53ea8eb93b2a386b96d4555677314182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! Implementations of command line sub-commands.
//!
//! This module has sub-modules with functions for all the
//! sub-commands of the command line tool part of the crate.

pub mod new;
pub use new::new;

pub mod list;
pub use list::list;

pub mod delete;
pub use delete::delete;

pub mod start;
pub use start::start;

pub mod shutdown;
pub use shutdown::shutdown;

pub mod cloud_init;
pub use cloud_init::cloud_init;