This commit is contained in:
Mateusz Gruszczyński
2026-07-22 23:04:29 +02:00
parent ba3726c1c1
commit e998a38e49
7 changed files with 401 additions and 61 deletions
+3 -1
View File
@@ -5,7 +5,9 @@ use tokio::sync::{broadcast, RwLock};
const CHANNEL_CAPACITY: usize = 256;
#[derive(Debug, Clone)]
pub struct SmtpConfig { pub host: String, pub port: u16, pub username: String, pub password: String, pub from: String, pub public_url: String }
pub struct SmtpConfig {
pub host: String, pub port: u16, pub username: String, pub password: String, pub from: String, pub public_url: String
}
#[derive(Debug, Clone)]
pub struct NoteUpdate {