shad-go/batcher/batcher.go
2022-02-10 22:06:57 +00:00

13 lines
187 B
Go

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