org.mashupbots.socko.routes
Matches the case-sensitive path of EndPoints in SockoEvents.
For example, to match /folderX use:
/folderX
val r = Routes({ case Path("/folderX") => { ... } })
This will match /folderX but not: /folderx, /folderX/ or /TheFolderX
/folderx
/folderX/
/TheFolderX
Matches the case-sensitive path of EndPoints in SockoEvents.
For example, to match
/folderXuse:val r = Routes({ case Path("/folderX") => { ... } })This will match
/folderXbut not:/folderx,/folderX/or/TheFolderX