workflows 0.7.2

A cli tool for creating a seemless workflow with remote and local git repos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! This module contains the modules for intergration with the cli tools this program uses
//!
//! - `fzf`
//! - `git`
//! - `gh`
//! - `tmux` & `tmuxinator`

pub mod fzf;

pub mod gh;

pub mod tmuxinator;

pub mod tmux;

pub mod git;