Skip to main content

openauth_fred/
config.rs

1#[derive(Debug, Clone, PartialEq, Eq)]
2pub struct FredRateLimitOptions {
3    pub key_prefix: String,
4}
5
6impl Default for FredRateLimitOptions {
7    fn default() -> Self {
8        Self {
9            key_prefix: "openauth:".to_owned(),
10        }
11    }
12}