feat: pass config from server to client (#407)

This commit is contained in:
Valerio Ageno
2025-01-23 18:43:17 +01:00
committed by GitHub
parent 8fe8930def
commit 305ae59086
10 changed files with 102 additions and 40 deletions
+4
View File
@@ -0,0 +1,4 @@
use once_cell::sync::OnceCell;
use tuono_internal::config::Config;
pub static GLOBAL_CONFIG: OnceCell<Config> = OnceCell::new();