1
0
Fork 0
yeast/impl/throttler.go

11 lines
163 B
Go

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