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