8 lines
98 B
Go
8 lines
98 B
Go
|
package interfaces
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Stopper interface {
|
||
|
Stop(ctx context.Context) error
|
||
|
}
|