bfile/janitor/src/state.rs

9 lines
126 B
Rust
Raw Normal View History

2023-10-11 16:06:07 +02:00
use redis::Client;
2023-10-12 12:39:28 +02:00
use crate::env::Env;
#[derive(Debug, Clone)]
2023-10-11 16:06:07 +02:00
pub struct State {
2023-10-12 12:39:28 +02:00
pub redis: Client,
pub env: Env
2023-10-11 16:06:07 +02:00
}