summaryrefslogtreecommitdiff
path: root/src/cmd/mod.rs
blob: 606e326845f5631c211e7a2318349a0268b028e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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 cloud_init;
pub use cloud_init::cloud_init;