basic logging

This commit is contained in:
2025-06-16 18:11:48 +02:00
parent 10837dac35
commit 39dd27378a
5 changed files with 223 additions and 10 deletions

View File

@@ -6,5 +6,6 @@ pub struct ServerConfig {
pub host: String,
#[builder(default = 6171)]
pub port: u16,
pub max_connections: Option<usize>,
#[builder(default = 256)]
pub max_connections: usize,
}