openauth-fred 0.0.5

Fred-backed Redis and Valkey integrations for OpenAuth.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct FredRateLimitOptions {
    pub key_prefix: String,
}

impl Default for FredRateLimitOptions {
    fn default() -> Self {
        Self {
            key_prefix: "openauth:".to_owned(),
        }
    }
}