tuimux 0.1.6

A fast Rust TUI for everything tmux, with full CRUD support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod app;
pub mod tmux;
pub mod ui;

use anyhow::Result;

/// Starts the tuimux application.
///
/// # Errors
/// Returns an error when the app runtime fails.
pub fn run() -> Result<()> {
    let mut app = app::App::new();
    app.run()
}