mirror of https://github.com/fluffle/goirc
Oops. Missed String() from interface.
This commit is contained in:
parent
aa12177399
commit
d0f0175d7f
|
@ -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 ...
|
||||||
|
|
Loading…
Reference in New Issue