#![allow(clippy::approx_constant)]
static_toml::static_toml! {
#[static_toml(
prefix = Prefix,
suffix = Suffix,
root_mod = cfg,
values_ident = items,
prefer_slices = false,
auto_doc = true
)]
#[derive(Debug)]
static EXAMPLE = include_toml!("example.toml");
#[derive(Debug)]
const MESSAGES = include_toml!("messages.toml");
}
fn main() {
dbg!(&EXAMPLE);
dbg!(MESSAGES);
}