Skip to main content

hyperlane_cli/command/
enum.rs

1/// Available commands
2#[derive(Clone, Copy, Debug, Eq, PartialEq)]
3pub enum CommandType {
4    /// Watch files using cargo-watch
5    Watch,
6    /// Create a new project from template
7    New,
8    /// Generate template components
9    Template,
10    /// Show help
11    Help,
12    /// Show version
13    Version,
14}