mkt-cli-core 0.3.0

Core traits, models, config, and output for the mkt marketing CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Configuration loading and profile management.
//!
//! Reads `config.toml` from the XDG config directory and supports
//! environment variable overrides for sensitive values like API tokens.

mod paths;
mod profile;
mod secure_write;

pub use paths::*;
pub use profile::*;
pub use secure_write::*;