overflow_probes/commons/handler.go

9 lines
114 B
Go
Raw Normal View History

2017-09-21 08:38:05 +00:00
package commons
import "context"
type Handler interface {
Start() error
Shutdown(ctx context.Context) error
}