caveman/smokestack/src/config.rs

7 lines
145 B
Rust
Raw Normal View History

2022-11-16 21:53:19 +01:00
#[derive(Debug, serde::Deserialize)]
pub struct Config {
pub redis: String,
pub redis_password_file: String,
2022-11-16 21:53:19 +01:00
pub listen_port: u16,
}