fzf-make 0.15.0

A command line tool that executes make target using fuzzy finder with preview window.
1
2
3
4
5
6
use anyhow::Result;

pub trait Usecase {
    fn command_str(&self) -> Vec<&'static str>;
    fn run(&self) -> Result<()>;
}