org.mashupbots.socko.routes
Matches the case-sensitive path of org.mashupbots.socko.events.EndPoints in org.mashupbots.socko.events.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 org.mashupbots.socko.events.EndPoints in org.mashupbots.socko.events.SockoEvents.
For example, to match
/folderX
use:This will match
/folderX
but not:/folderx
,/folderX/
or/TheFolderX