diff --git a/state/tracker.go b/state/tracker.go index 27246cd..2ee8f2e 100644 --- a/state/tracker.go +++ b/state/tracker.go @@ -22,6 +22,8 @@ type StateTracker interface { Associate(channel *Channel, nick *Nick) *ChanPrivs Dissociate(channel *Channel, nick *Nick) Wipe() + // The state tracker can output a debugging string + String() string } // ... and a struct to implement it ...