yeast/impl/throttler.go

10 lines
138 B
Go
Raw Normal View History

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