fzf-make 0.15.0

A command line tool that executes make target using fuzzy finder with preview window.
use crate::usecase::fzf_make::app;
use crate::usecase::usecase_main::Usecase;
use anyhow::Result;

pub struct FzfMake;

impl FzfMake {
    pub fn new() -> Self {
        Self {}
    }
}

impl Usecase for FzfMake {
    fn command_str(&self) -> Vec<&'static str> {
        vec![]
    }

    fn run(&self) -> Result<()> {
        app::main()
    }
}