kadabra 0.1.0

Easily share data between different terminal windows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_use]
extern crate anyhow;

extern crate ctrlc;

mod cmds;
mod file_issue;
mod filesystem;
mod handler;
mod opts;
mod rx;
mod terminal;
mod tx;

pub use file_issue::FileAnIssue;
pub use handler::handle_opts;
pub use opts::opts_from_env;