Originally created by @forki in giraffe-fsharp/Giraffe#158
Reminder for @gerardtoconnor ;-)
sent you actual routes in screenshot. It's along the lines of:
router notfound [
subRoute "/api" [
// get routes
route "/hey" f
POST [
route "/there" f2
]
]
not working. but following is:
router notfound [
subRoute "/api" [
GET [
route "/hey" f
]
POST [
route "/there" f2
]
]
Originally created by @forki in giraffe-fsharp/Giraffe#158
Reminder for @gerardtoconnor ;-)
sent you actual routes in screenshot. It's along the lines of:
not working. but following is: