7 lines
227 B
Rust
7 lines
227 B
Rust
|
|
use std::sync::LazyLock;
|
||
|
|
use crate::swear_cleanup::models::Prompts;
|
||
|
|
|
||
|
|
pub(crate) static PROMPTS: LazyLock<Prompts> = LazyLock::new(|| {
|
||
|
|
toml::from_str(include_str!("prompts.toml")).expect("Could not parse prompts.toml")
|
||
|
|
});
|