sylvia_iot_auth/models/redis/
mod.rs

1//! Redis model implementation.
2//!
3//! Currently we do not use Redis because it uses `&mut self` that is not compatible with model
4//! trait interface. Redis connection does not implement [`Clone`] so we cannot use
5//! `Arc<Mutex<Connection>>` to implement.
6
7pub mod access_token;
8pub mod authorization_code;
9pub mod conn;
10pub mod refresh_token;