ui-cli 0.2.0

A CLI to add components to your app.
pub struct MyCommand;
pub struct AddCommand;
pub struct InitCommand;
pub struct StartersCommand;

/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/*                     ✨ FUNCTIONS ✨                        */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

impl MyCommand {
    pub const ADD: &'static str = "add";
    pub const INIT: &'static str = "init";
    pub const STARTERS: &'static str = "starters";
}

impl AddCommand {
    pub const COMPONENTS: &'static str = "components";
    pub const HELP: &'static str = "The components to add (space-separated)";
    pub const ABOUT: &'static str = "Add components and dependencies to your project";
}

impl InitCommand {
    pub const PROJECT_NAME: &'static str = "project_name";
    pub const HELP: &'static str = "The name of the project to initialize";
    pub const ABOUT: &'static str = "Initialize the project";
}

impl StartersCommand {
    pub const ABOUT: &'static str = "Choose and install starter templates";
    pub const STARTER_TEMPLATE: &'static str = "starter_template";
    pub const HELP: &'static str = "The starter template to install";
}