From 6610ee2030baa99e6129c7b06588d33038dde671 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Sat, 13 Jul 2024 09:08:03 -0700 Subject: Re-add UserList field to client --- hotline/client.go | 1 + 1 file changed, 1 insertion(+) 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) -- cgit