14 lines
162 B
Go
14 lines
162 B
Go
package dummy
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
)
|
|
|
|
type Limiter struct {
|
|
}
|
|
|
|
func (l *Limiter) Limit(context.Context, string) (time.Duration, error) {
|
|
return 0, nil
|
|
}
|