workmn 0.0.5

Manages the lifecycle of projects on the local machine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::{ActionContext, ActionResult, CliAction};
use workmn::conf::ConfFolderLocation;

pub struct Command {}

impl<'a> CliAction for Command {
    fn dispatch(_context: ActionContext) -> ActionResult {
        println!("{}", ConfFolderLocation::default().dir.to_string_lossy());

        Ok(())
    }
}