shad-go/batcher/batcher.go

13 lines
167 B
Go
Raw Permalink Normal View History

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