mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
33a431ef43
* ci: Update go version to 1.19 Signed-off-by: Nicol Draghici <idraghic@cisco.com> * ci: Fix lint issues Signed-off-by: Nicol Draghici <idraghic@cisco.com> * ci: Added needprivileges to lint, made needprivileges pass lint Signed-off-by: Catalin Hofnar <catalin.hofnar@gmail.com> Signed-off-by: Nicol Draghici <idraghic@cisco.com> Signed-off-by: Nicol Draghici <idraghic@cisco.com> Signed-off-by: Catalin Hofnar <catalin.hofnar@gmail.com> Co-authored-by: Catalin Hofnar <catalin.hofnar@gmail.com>
24 lines
650 B
Go
24 lines
650 B
Go
//go:build debug
|
|
// +build debug
|
|
|
|
// @contact.name API Support
|
|
// @contact.url http://www.swagger.io/support
|
|
// @contact.email support@swagger.io
|
|
|
|
package debug
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
httpSwagger "github.com/swaggo/http-swagger"
|
|
"zotregistry.io/zot/pkg/api/config"
|
|
"zotregistry.io/zot/pkg/log" //nolint:goimports
|
|
// as required by swaggo.
|
|
_ "zotregistry.io/zot/swagger"
|
|
)
|
|
|
|
func SetupSwaggerRoutes(conf *config.Config, router *mux.Router, log log.Logger,
|
|
) {
|
|
log.Info().Msg("setting up swagger route")
|
|
// swagger swagger "/swagger/v2/index.html"
|
|
router.PathPrefix("/swagger/v2/").Methods("GET").Handler(httpSwagger.WrapHandler)
|
|
}
|