curre/starter.go

8 lines
94 B
Go
Raw Permalink Normal View History

2022-09-10 01:19:29 +02:00
package curre
import "context"
type Starter interface {
Start(ctx context.Context) error
}