bath 0.4.0

A TUI tool to manage and export environment variable profiles
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod app;
pub mod commands;
pub mod daisyui_themes;
pub mod dialogs;
pub mod editor;
pub mod input;
pub mod select;
pub mod state;
pub mod theme;
pub mod ui;
pub mod util;
pub mod view;

pub fn run() -> anyhow::Result<()> {
    app::run()
}