mkt-cli-core 0.2.0

Core traits, models, config, and output for the mkt marketing CLI
Documentation
1
2
3
4
5
6
7
8
9
10
//! 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;

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