skinny.micro.routing.PathPatternParser.scala Maven / Gradle / Ivy
The newest version!
package skinny.micro.routing
/**
* Parses a string into a path pattern for routing.
*/
trait PathPatternParser {
def apply(pattern: String): PathPattern
}
object PathPatternParser {
val PathReservedCharacters = "/?#"
}