20 lines
254 B
Go
20 lines
254 B
Go
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
|
|
}
|