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