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