1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

Change tag for index routes.

This commit is contained in:
grossmj 2020-10-24 17:00:43 +10:30
parent f3a7eba796
commit b2fb2442c8

View File

@ -70,7 +70,7 @@ app.add_middleware(
allow_headers=["*"],
)
app.include_router(index.router, tags=["controller"])
app.include_router(index.router, tags=["Index"])
app.include_router(controller.router, prefix="/v2")
app.mount("/v2/compute", compute_api)