rssmon3/config/stoppable.go

8 lines
118 B
Go

package config
type Stoppable struct{}
func (s Stoppable) Stopped() <-chan struct{} {
return Values().Ctx.Done()
}