fastapi-crudrouter
fastapi-crudrouter copied to clipboard
add name for route
route name will be like this
{ "path": "/proxies", "name": "get_all_proxies", "path_regex": "^/proxies$" }, { "path": "/proxies", "name": "create_one_proxies", "path_regex": "^/proxies$" }, { "path": "/proxies", "name": "delete_all_proxies", "path_regex": "^/proxies$" }, { "path": "/proxies/{item_id}", "name": "get_one_proxies", "path_regex": "^/proxies/(?P<item_id>[^/]+)$" }, { "path": "/proxies/{item_id}", "name": "update_one_proxies", "path_regex": "^/proxies/(?P<item_id>[^/]+)$" }, { "path": "/proxies/{item_id}", "name": "delete_one_proxies", "path_regex": "^/proxies/(?P<item_id>[^/]+)$" },
The latest updates on your projects. Learn more about Vercel for Git ↗︎
| Name | Status | Preview | Updated |
|---|---|---|---|
| fastapi-crudrouter | ✅ Ready (Inspect) | Visit Preview | Jul 7, 2022 at 3:42AM (UTC) |