summaryrefslogtreecommitdiff
path: root/src/cmd/mod.rs
blob: 2659b4bf64a5d2f1e05d72853590381113cf44f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//! 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 recreate;
pub use recreate::recreate;

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;

pub mod config;
pub use config::config;

pub mod spec;
pub use spec::spec;

pub mod reboot;
pub use reboot::reboot;