Fixing builds and workflows

This commit is contained in:
2026-01-31 17:52:44 +01:00
parent 8e09fd106e
commit 20bc0ffcb4
5 changed files with 24 additions and 13 deletions

View File

@@ -48,6 +48,12 @@ pub struct App {
pub panel: PanelState,
}
impl Default for App {
fn default() -> Self {
Self::new()
}
}
impl App {
pub fn new() -> Self {
let variables = Arc::new(Mutex::new(HashMap::new()));