From: Jeff Halter Date: Sat, 13 Jul 2024 16:08:03 +0000 (-0700) Subject: Re-add UserList field to client X-Git-Url: https://git.r.bdr.sh/rbdr/mobius/commitdiff_plain/6610ee2030baa99e6129c7b06588d33038dde671 Re-add UserList field to client --- 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)