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