go-zero/core/proc/stopper.go
2021-02-22 10:07:39 +08:00

16 lines
184 B
Go

package proc
var noopStopper nilStopper
type (
// Stopper interface wraps the method Stop.
Stopper interface {
Stop()
}
nilStopper struct{}
)
func (ns nilStopper) Stop() {
}