wicked-waifus-rs/shorekeeper-protokey/src/config.rs
2024-09-11 19:37:46 +03:00

9 lines
191 B
Rust

use std::collections::HashSet;
use serde::Deserialize;
#[derive(Deserialize)]
pub struct ProtoKeySettings {
pub builtin_encryption_msg_id: HashSet<u16>,
pub use_client_key: bool,
}