promptuity 0.0.5

Promptuity is a library that provides interactive prompts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A module that provides built-in themes.
//!
//! # Themes
//!
//! The `themes` module provides the following built-in themes.
//!
//! - [`MinimalTheme`]: A Theme that offers a compact and minimalistic display.
//! - [`FancyTheme`]: A Theme that displays with a rich UI.

mod fancy;
mod minimal;

pub use fancy::*;
pub use minimal::*;