{
  "routes": [
    {
      "method": "GET",
      "path": "/clientes",
      "handler": "clientes.find",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/clientesList",
      "handler": "clientes.list",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/clienteswithoutpedidos",
      "handler": "clientes.findwithoutpedidos",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/clientes/count",
      "handler": "clientes.count",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/clientes/:id",
      "handler": "clientes.findOne",
      "config": {
        "policies": []
      }
    },
    {
      "method": "POST",
      "path": "/clientes",
      "handler": "clientes.create",
      "config": {
        "policies": []
      }
    },
    {
      "method": "PUT",
      "path": "/clientes/:id",
      "handler": "clientes.update",
      "config": {
        "policies": []
      }
    },
    {
      "method": "DELETE",
      "path": "/clientes/:id",
      "handler": "clientes.delete",
      "config": {
        "policies": []
      }
    }
  ]
}
