RoutePatterns provides a method to generate a regex which will match a URL path against a collection of patterns. If any of the patterns match the path, the regex will return a successful match. Multiple patterns can be provided and they are matched in order. Example: - /api/* matches /api/1 but no
| 20 | // |
| 21 | // All patterns support an optional trailing slash. |
| 22 | type RoutePatterns []string |
| 23 | |
| 24 | func (rp RoutePatterns) MustCompile() *regexp.Regexp { |
| 25 | re, err := rp.Compile() |
no outgoing calls
no test coverage detected