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 {
2017-09-22 09:20:07 +00:00
Serve() error
2017-09-21 08:38:05 +00:00
Shutdown(ctx context.Context) error
}