Skip to main content

mkt_core/models/
mod.rs

1//! Domain models for the `mkt` marketing CLI.
2//!
3//! All models are provider-agnostic. Each provider crate contains a
4//! `mapping` module that converts between API-specific representations
5//! and these unified models.
6
7mod ad;
8mod adset;
9mod audience;
10mod campaign;
11mod common;
12mod creative;
13mod insight;
14mod media;
15mod post;
16
17pub use ad::*;
18pub use adset::*;
19pub use audience::*;
20pub use campaign::*;
21pub use common::*;
22pub use creative::*;
23pub use insight::*;
24pub use media::*;
25pub use post::*;