Skip to main content

hyperlane_cli/command/
enum.rs

1/// Available commands
2#[derive(Clone, Copy, Debug, Eq, PartialEq)]
3pub enum CommandType {
4    /// Format code using cargo fmt
5    Fmt,
6    /// Watch files using cargo-watch
7    Watch,
8    /// Bump version in Cargo.toml
9    Bump,
10    /// Publish packages in monorepo
11    Publish,
12    /// Create a new project from template
13    New,
14    /// Generate template components
15    Template,
16    /// Show help
17    Help,
18    /// Show version
19    Version,
20}