shad-go/batcher/batcher.go
2023-10-03 20:25:41 +03:00

11 lines
176 B
Go

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