(path string)
| 78 | } |
| 79 | |
| 80 | func countParams(path string) uint16 { |
| 81 | colons := strings.Count(path, ":") |
| 82 | stars := strings.Count(path, "*") |
| 83 | return safeUint16(colons + stars) |
| 84 | } |
| 85 | |
| 86 | func countSections(path string) uint16 { |
| 87 | return safeUint16(strings.Count(path, "/")) |