Oops. Missed String() from interface.

This commit is contained in:
Alex Bramley 2011-11-05 09:30:32 +00:00
parent aa12177399
commit d0f0175d7f
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,8 @@ type StateTracker interface {
Associate(channel *Channel, nick *Nick) *ChanPrivs Associate(channel *Channel, nick *Nick) *ChanPrivs
Dissociate(channel *Channel, nick *Nick) Dissociate(channel *Channel, nick *Nick)
Wipe() Wipe()
// The state tracker can output a debugging string
String() string
} }
// ... and a struct to implement it ... // ... and a struct to implement it ...