Remove monitoring stuff that is here unintentionally

This commit is contained in:
Ellie Huxtable 2023-05-17 22:15:28 +01:00
parent 235a842600
commit 092aa1a4e4

View File

@ -7,11 +7,6 @@ use serde::{Deserialize, Serialize};
pub const HISTORY_PAGE_SIZE: i64 = 100;
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Monitoring {
loki_address: Option<String>,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Settings {
pub host: String,
@ -22,7 +17,6 @@ pub struct Settings {
pub max_history_length: usize,
pub register_webhook_url: Option<String>,
pub register_webhook_username: String,
pub monitoring: Option<Monitoring>,
}
impl Settings {