RateExtractor rate extractor
| 50 | |
| 51 | // RateExtractor rate extractor |
| 52 | type RateExtractor interface { |
| 53 | Extract(r *http.Request) (*RateSet, error) |
| 54 | } |
| 55 | |
| 56 | // RateExtractorFunc rate extractor function type |
| 57 | type RateExtractorFunc func(r *http.Request) (*RateSet, error) |
no outgoing calls
no test coverage detected