1
0
Fork 0
yeast/impl/throttler.go

10 lines
138 B
Go

package impl
func Throttler() *Impl {
return &Impl{
actor: func(data []byte) (resp []byte, err error) {
return data, nil
},
}
}