1
0
Fork 0
yeast/impl/throttler.go

10 lines
137 B
Go
Raw Normal View History

2015-02-10 18:23:58 +00:00
package impl
func Throttler() *Impl {
return &Impl{
Call: func(data []byte) (resp []byte, err error) {
return data, nil
},
}
}