suitcase 0.1.4

A set of personal CLI tools to automate common tasks in software development (including Rust, Dart, and Flutter), written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod ford;
pub mod fua;
pub mod gho;
pub mod upgrade;

pub use ford::*;
pub use fua::*;
pub use gho::*;
pub use upgrade::*;

use super::{cli::BaseArgs, shell::Shell};

pub struct InternalCommandOptions<'a, T> {
    pub shell: &'a Shell,
    pub base_args: &'a BaseArgs,
    pub options: &'a T,
}