aboutsummaryrefslogtreecommitdiff
path: root/hotline
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2024-07-13 09:08:03 -0700
committerJeff Halter <868228+jhalter@users.noreply.github.com>2024-07-13 09:08:03 -0700
commit6610ee2030baa99e6129c7b06588d33038dde671 (patch)
tree7f8ac4d1c86ebd050a01fe6b8a9802ba481f99de /hotline
parent4fa4a57c4352f703958c3c5cb8dcd2b56cb35882 (diff)
Re-add UserList field to client
Diffstat (limited to 'hotline')
-rw-r--r--hotline/client.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/hotline/client.go b/hotline/client.go
index e75f77b..d7af920 100644
--- a/hotline/client.go
+++ b/hotline/client.go
@@ -31,6 +31,7 @@ type Client struct {
Pref *ClientPrefs
Handlers map[[2]byte]ClientHandler
activeTasks map[[4]byte]*Transaction
+ UserList []User
}
type ClientHandler func(context.Context, *Client, *Transaction) ([]Transaction, error)