fnox 1.25.1

A flexible secret management tool supporting multiple providers and encryption methods
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Terminal User Interface module for fnox
//!
//! Provides an interactive dashboard for managing secrets.

mod app;
mod event;
pub mod terminal;
pub mod ui;

pub mod components;

pub use app::App;
pub use event::{Event, EventHandler};
pub use terminal::{enter_terminal, leave_terminal};