notnow 0.3.10

A terminal based task and TODO management software.
Documentation
// Copyright (C) 2019-2024 Daniel Mueller <deso@posteo.net>
// SPDX-License-Identifier: GPL-3.0-or-later

mod config;
mod detail_dialog;
mod event;
mod in_out;
mod input;
mod message;
mod modal;
mod selectable;
mod state;
mod tab_bar;
mod tag_dialog;
mod task_list_box;
mod term_renderer;
mod termui;

pub use config::Config;
pub use event::Event;
pub use event::Ids;
pub use message::Message;
pub use state::State;
pub use term_renderer::TermRenderer as Renderer;
pub use termui::TermUi as Ui;
pub use termui::TermUiData as UiData;