Several changes

This commit is contained in:
2026-01-30 10:40:38 +00:00
parent 1ef42695f0
commit 92b01844c4
9 changed files with 155 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
package main
import (
"sync"
"github.com/diamondburned/gotk4/pkg/gtk/v4"
)
@@ -17,3 +17,10 @@ type lambdaConfig struct {
Insecure bool
Nick string
}
type mucUnit struct {
// key: OccupantID
// value: last user presence
Members sync.Map
}