8 lines
118 B
Go
Executable File
8 lines
118 B
Go
Executable File
package config
|
|
|
|
type Stoppable struct{}
|
|
|
|
func (s Stoppable) Stopped() <-chan struct{} {
|
|
return Values().Ctx.Done()
|
|
}
|