8 lines
94 B
Go
8 lines
94 B
Go
|
package curre
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Starter interface {
|
||
|
Start(ctx context.Context) error
|
||
|
}
|