refactor: tmux -> comm/tmux.rs

This commit is contained in:
graelo 2021-03-20 22:54:14 +01:00
parent 7c7799ffbd
commit 9426d8bfee
4 changed files with 3 additions and 2 deletions

View file

@ -2,7 +2,7 @@ use clap::Clap;
use std::collections::HashMap;
use std::str::FromStr;
use copyrat::{error, output_destination::OutputDestination, tmux, ui::Selection, CliOpt};
use copyrat::{comm::tmux, error, output_destination::OutputDestination, ui::Selection, CliOpt};
/// Main configuration, parsed from command line.
#[derive(Clap, Debug)]

1
src/comm/mod.rs Normal file
View file

@ -0,0 +1 @@
pub mod tmux;

View file

@ -1,7 +1,7 @@
pub mod comm;
pub mod error;
pub mod output_destination;
pub mod textbuf;
pub mod tmux;
pub mod ui;
use clap::Clap;