gpg-tui 0.11.2

Manage your GnuPG keys with ease!
Documentation
//! Main application which is responsible for operations on the terminal.

/// Application launcher.
pub mod launcher;

/// Renderer for the interface.
pub mod renderer;

/// Application state.
pub mod state;

/// Application mode.
pub mod mode;

/// Application prompt.
pub mod prompt;

/// Application commands.
pub mod command;

/// Application tabs.
pub mod tab;

/// Input and command handler.
pub mod handler;

/// Selection helper.
pub mod selection;

/// Style helper.
pub mod style;

/// Key bindings helper.
pub mod keys;

/// Application banner text.
pub mod banner;

/// Utilities.
pub mod util;