CreateExtractors creates ValuesExtractors from given lookups. lookups is a string in the form of " : " or " : , : " that is used to extract key from the request. Possible values: - "header: " or "header: : " ` ` is argument value to
(lookups string, limit uint)
| 72 | // |
| 73 | // limit sets the maximum amount how many lookups can be returned. |
| 74 | func CreateExtractors(lookups string, limit uint) ([]ValuesExtractor, error) { |
| 75 | return createExtractors(lookups, limit) |
| 76 | } |
| 77 | |
| 78 | func createExtractors(lookups string, limit uint) ([]ValuesExtractor, error) { |
| 79 | if lookups == "" { |
searching dependent graphs…