{ "routes": [ { "method": "GET", "path": "/carrers", "handler": "carrer.find", "config": { "policies": [] } }, { "method": "GET", "path": "/carrers/count", "handler": "carrer.count", "config": { "policies": [] } }, { "method": "GET", "path": "/carrers/:id", "handler": "carrer.findOne", "config": { "policies": [] } }, { "method": "POST", "path": "/carrers", "handler": "carrer.create", "config": { "policies": [] } }, { "method": "PUT", "path": "/carrers/:id", "handler": "carrer.update", "config": { "policies": [] } }, { "method": "DELETE", "path": "/carrers/:id", "handler": "carrer.delete", "config": { "policies": [] } } ] }