shad-go/batcher/batcher.go

12 lines
176 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
package batcher
2023-10-03 17:25:41 +00:00
import "gitlab.com/manytask/itmo-go/public/batcher/slow"
2020-02-14 23:01:42 +00:00
2023-10-02 19:32:41 +00:00
type Batcher struct{}
2020-02-14 23:01:42 +00:00
func NewBatcher(v *slow.Value) *Batcher {
return nil
}