curre/initer.go

8 lines
92 B
Go
Raw Normal View History

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