fzf-make 0.7.0

A command line tool that executes make target using fuzzy finder with preview window.
1
2
3
4
5
6
7
8
9
10
11
mod controller;
mod fuzzy_finder;
mod models;
mod usecase;

use crate::controller::controller_main;

fn main() {
    // TODO: Catch panic
    controller_main::run();
}