From f204ca888d8a941c2309e3c68d9b2fd1fdd841a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferdinand=20M=C3=BCtsch?= Date: Fri, 30 Sep 2022 11:02:32 +0200 Subject: [PATCH] fix: swagger docs path [skip ci] --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 0c710f0..795c185 100644 --- a/main.go +++ b/main.go @@ -105,7 +105,7 @@ func main() { config = conf.Load(version) // Configure Swagger docs - docs.SwaggerInfo.BasePath = config.Server.BasePath + docs.SwaggerInfo.BasePath = config.Server.BasePath + "/api" // Set log level if config.IsDev() {