overflow_discovery/commons/shutdowner.go

8 lines
102 B
Go
Raw Permalink Normal View History

2017-10-20 05:28:07 +00:00
package commons
import "context"
type Shutdowner interface {
Shutdown(ctx context.Context) error
}