1fda6b66创建于 2023年12月25日历史提交
{
  "routes": [
    {
      "method": "GET",
      "path": "/sources",
      "handler": "sources.find",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/sources/count",
      "handler": "sources.count",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/sources/:id",
      "handler": "sources.findOne",
      "config": {
        "policies": []
      }
    },
    {
      "method": "POST",
      "path": "/sources",
      "handler": "sources.create",
      "config": {
        "policies": []
      }
    },
    {
      "method": "PUT",
      "path": "/sources/:id",
      "handler": "sources.update",
      "config": {
        "policies": []
      }
    },
    {
      "method": "DELETE",
      "path": "/sources/:id",
      "handler": "sources.delete",
      "config": {
        "policies": []
      }
    }
  ]
}