9 lines
102 B
Go
9 lines
102 B
Go
package handler
|
|
|
|
import "context"
|
|
|
|
type Handler interface {
|
|
Start()
|
|
Shutdown(ctx context.Context)
|
|
}
|