Files
rssmon3/config/stoppable.go
2019-12-27 18:33:58 -07:00

8 lines
118 B
Go
Executable File

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