Fixed: interface method AddChannel must have all named params (inamedparam)

This commit is contained in:
Holger Obermaier
2026-02-11 15:55:14 +01:00
parent 3181f81db1
commit 0b1f88b8a6

View File

@@ -21,7 +21,7 @@ type multiChanTicker struct {
type MultiChanTicker interface { type MultiChanTicker interface {
Init(duration time.Duration) Init(duration time.Duration)
AddChannel(chan time.Time) AddChannel(channel chan time.Time)
Close() Close()
} }