show(), hide(), visible. font-light, normal, medium, semibold, bold, extrabold, black. protocol connection pooling. fetch() with GURT. DNS from HTTP to GURT.

This commit is contained in:
Face
2025-08-18 17:45:46 +03:00
parent 3ed49fae0d
commit a8313ec3d8
38 changed files with 2123 additions and 2059 deletions

View File

@@ -25,6 +25,8 @@ impl Config {
url: "postgresql://username:password@localhost/domains".into(),
max_connections: 10,
},
cert_path: "localhost+2.pem".into(),
key_path: "localhost+2-key.pem".into(),
},
discord: Discord {
bot_token: "".into(),

View File

@@ -15,6 +15,8 @@ pub struct Server {
pub(crate) address: String,
pub(crate) port: u64,
pub(crate) database: Database,
pub(crate) cert_path: String,
pub(crate) key_path: String,
}
#[derive(Clone, Debug, Deserialize, Serialize)]