kanri 0.11.0

Manage your projects within the terminal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod blueprints;
mod commands;
mod config;
mod profiles;
mod projects;
mod root;

pub use blueprints::{
    BlueprintsCheckArgs, BlueprintsCommands, BlueprintsEditArgs, BlueprintsNewArgs,
    BlueprintsRemoveArgs,
};
pub use commands::Commands;
pub use config::{ConfigCommands, RecentArgs};
pub use profiles::{ProfilesCommands, ProfilesGetArgs, ProfilesRemoveArgs, ProfilesSetArgs};
pub use projects::{
    BackupArgs, CloneArgs, ImportArgs, ListArgs, NewArgs, OpenArgs, RemoveArgs, RenameArgs,
};
pub use root::Cli;