8 lines
102 B
Go
8 lines
102 B
Go
|
package commons
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Shutdowner interface {
|
||
|
Shutdown(ctx context.Context) error
|
||
|
}
|