dockrtui 0.1.3

A fast, modern and keyboard-driven terminal dashboard for Docker — built with Rust.
1
2
3
4
5
6
7
8
9
10
11
12
use color_eyre::eyre::Result;

mod app;
mod docker;
mod theme;
mod ui;

#[tokio::main(flavor = "multi_thread")]
async fn main() -> Result<()> {
    color_eyre::install()?;
    app::run().await.map_err(|e| color_eyre::eyre::eyre!(e))
}