8748c22d6e
Also this: core/units.go:21: impl.Impl.Call is a field, not a method
10 lines
138 B
Go
10 lines
138 B
Go
package impl
|
|
|
|
func Throttler() *Impl {
|
|
return &Impl{
|
|
actor: func(data []byte) (resp []byte, err error) {
|
|
return data, nil
|
|
},
|
|
}
|
|
}
|