yeast/impl/throttler.go

11 lines
163 B
Go
Raw Normal View History

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