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