initial commit

This commit is contained in:
2026-01-29 21:35:36 +00:00
commit b0f9a7048a
17 changed files with 923 additions and 0 deletions

19
types.go Normal file
View File

@@ -0,0 +1,19 @@
package main
import (
"github.com/diamondburned/gotk4/pkg/gtk/v4"
)
type chatTab struct {
isMuc bool
msgs *gtk.ListBox
}
type lambdaConfig struct {
Server string
Username string
Password string
Insecure bool
Nick string
}