shad-go/batcher/batcher.go
Sergey Paramoshkin dc939b6ed1
update repo
2023-10-02 22:32:41 +03:00

11 lines
177 B
Go

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