12 lines
167 B
Go
12 lines
167 B
Go
//go:build !solution
|
|
|
|
package batcher
|
|
|
|
import "gitlab.com/slon/shad-go/batcher/slow"
|
|
|
|
type Batcher struct {
|
|
}
|
|
|
|
func NewBatcher(v *slow.Value) *Batcher {
|
|
return nil
|
|
}
|