8 lines
92 B
Go
8 lines
92 B
Go
|
package curre
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Initer interface {
|
||
|
Init(ctx context.Context) error
|
||
|
}
|