wicked-waifus-rs/shorekeeper-protokey/src/config.rs

10 lines
191 B
Rust
Raw Normal View History

2024-09-11 16:37:46 +00:00
use std::collections::HashSet;
use serde::Deserialize;
#[derive(Deserialize)]
pub struct ProtoKeySettings {
pub builtin_encryption_msg_id: HashSet<u16>,
pub use_client_key: bool,
}