config.rs 504 B

123456789101112131415161718192021222324
  1. use crate::{status::StatusManager, storage::Storage, token::TokenManager};
  2. #[derive(Debug)]
  3. pub struct Config<S>
  4. where
  5. S: Storage + Sync + Send,
  6. {
  7. pub storage: S,
  8. pub token_manager: TokenManager,
  9. pub status: StatusManager,
  10. }
  11. impl<S> From<S> for Config<S>
  12. where
  13. S: Storage + Sync + Send,
  14. {
  15. fn from(storage: S) -> Self {
  16. Self {
  17. storage,
  18. token_manager: TokenManager(b"test".to_vec()),
  19. status: StatusManager::default(),
  20. }
  21. }
  22. }