overflow_probes/commons/handler.go
crusader 6fb6bc66d8 ing
2017-09-22 18:20:07 +09:00

9 lines
114 B
Go

package commons
import "context"
type Handler interface {
Serve() error
Shutdown(ctx context.Context) error
}