1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-05-12 18:44:50 +00:00

Oops. Missed String() from interface.

This commit is contained in:
Alex Bramley 2011-11-05 09:30:32 +00:00
parent aa12177399
commit d0f0175d7f

View file

@ -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 ...