fix: add missing Go and Raw registries to OpenAPI, startup logs, and metrics tests (#115)

- openapi.rs: add Go Module Proxy and Raw File Storage tags, update version and description
- main.rs: add /go/ to Available endpoints startup log
- dashboard_metrics.rs: add go to download and upload test coverage for all 7 registries
This commit is contained in:
2026-04-08 11:39:36 +03:00
committed by GitHub
parent 71d8d83585
commit 4003c54744
3 changed files with 17 additions and 9 deletions

View File

@@ -18,8 +18,8 @@ use crate::AppState;
#[openapi(
info(
title = "Nora",
version = "0.2.12",
description = "Multi-protocol package registry supporting Docker, Maven, npm, Cargo, and PyPI",
version = "0.5.0",
description = "Multi-protocol package registry supporting Docker, Maven, npm, Cargo, PyPI, Go, and Raw",
license(name = "MIT"),
contact(name = "DevITWay", url = "https://github.com/getnora-io/nora")
),
@@ -35,6 +35,8 @@ use crate::AppState;
(name = "npm", description = "npm Registry API"),
(name = "cargo", description = "Cargo Registry API"),
(name = "pypi", description = "PyPI Simple API"),
(name = "go", description = "Go Module Proxy API"),
(name = "raw", description = "Raw File Storage API"),
(name = "auth", description = "Authentication & API Tokens")
),
paths(