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