lacy 0.6.1

Fast magical cd alternative for lazy terminal navigators
Documentation
mod commands;
mod complete;
mod init;
mod prompt;

pub use crate::cmd::commands::*;

pub trait Run {
    fn run(&self);
}

impl Run for LacyCli {
    fn run(&self) {
        match &self.command {
            LacyCommand::Prompt(cmd) => cmd.run(),
            LacyCommand::Init(cmd) => cmd.run(),
            LacyCommand::Complete(cmd) => cmd.run(),
        }
    }
}