1
0
Fork 0
mirror of https://mzte.de/git/LordMZTE/brevo synced 2024-05-16 14:03:45 +02:00
brevo/src/config.rs
2021-06-24 15:57:11 +02:00

14 lines
243 B
Rust

use std::net::SocketAddr;
use serde::Deserialize;
use url::Url;
#[derive(Deserialize)]
pub struct Config {
pub database_url: String,
pub bind_addr: SocketAddr,
pub database: String,
pub link_len: u8,
pub base_url: Url,
}