a lodda changes my guy
This commit is contained in:
51
types.go
51
types.go
@@ -1,26 +1,25 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"sync"
|
||||
"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
|
||||
}
|
||||
|
||||
|
||||
type mucUnit struct {
|
||||
// key: OccupantID
|
||||
// value: last user presence
|
||||
Members sync.Map
|
||||
}
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/diamondburned/gotk4/pkg/gtk/v4"
|
||||
"sync"
|
||||
)
|
||||
|
||||
type chatTab struct {
|
||||
isMuc bool
|
||||
msgs *gtk.ListBox
|
||||
}
|
||||
|
||||
type lambdaConfig struct {
|
||||
Server string
|
||||
Username string
|
||||
Password string
|
||||
Insecure bool
|
||||
Nick string
|
||||
}
|
||||
|
||||
type mucUnit struct {
|
||||
// key: OccupantID
|
||||
// value: last user presence
|
||||
Members sync.Map
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user