glues-tui 0.8.1

TUI and WASM frontends for the Glues note-taking experience
Documentation
pub mod action;
pub mod app;
#[cfg(not(target_arch = "wasm32"))]
pub mod cli;
pub mod color;
pub mod config;
pub mod context;
pub mod input;
#[macro_use]
pub mod logger;
pub mod theme;
pub mod transitions;
pub mod views;

#[cfg(target_arch = "wasm32")]
pub mod web;

pub use action::Action;
pub use app::App;
pub use context::Context;