tact 0.2.0

Terminal interface for Nanocodex
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Application boundaries for configuration, authentication, and command dispatch.

mod auth;
pub(crate) mod browser;
mod cli;
pub(crate) mod config;
pub(crate) mod error;
pub(crate) mod installation;
mod secret;
mod shutdown;
pub(crate) mod update;

pub(crate) use cli::Cli;