caveman/hunter/src/config.rs

11 lines
258 B
Rust
Raw Normal View History

2022-11-02 22:06:43 +01:00
#[derive(Debug, serde::Deserialize)]
pub struct Config {
2022-11-03 01:21:53 +01:00
pub redis: String,
pub redis_password_file: String,
2023-08-08 18:42:34 +02:00
pub database: String,
2022-11-02 22:06:43 +01:00
pub hosts: Vec<String>,
pub max_workers: usize,
2022-12-26 03:44:42 +01:00
pub prometheus_port: u16,
pub blocklist: String,
2022-11-02 22:06:43 +01:00
}