yeast/impl/throttler.go
2015-02-11 01:23:58 +07:00

10 lines
137 B
Go

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