shad-go/batcher/batcher.go

14 lines
187 B
Go
Raw Normal View History

2022-02-10 22:06:57 +00:00
//go:build !solution
2020-02-14 23:01:42 +00:00
// +build !solution
package batcher
import "gitlab.com/slon/shad-go/batcher/slow"
type Batcher struct {
}
func NewBatcher(v *slow.Value) *Batcher {
return nil
}