mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
97f1fc0f98
Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com> (cherry picked from commit d557da0baba819b7cd7e6b5941528776e125ac6d)
18 lines
489 B
Go
18 lines
489 B
Go
//go:build !search && !ui_base
|
|
// +build !search,!ui_base
|
|
|
|
package extensions
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
"zotregistry.io/zot/pkg/api/config"
|
|
"zotregistry.io/zot/pkg/log"
|
|
"zotregistry.io/zot/pkg/storage"
|
|
)
|
|
|
|
func SetupUIRoutes(config *config.Config, router *mux.Router, storeController storage.StoreController,
|
|
log log.Logger,
|
|
) {
|
|
log.Warn().Msg("skipping setting up ui routes because given zot binary doesn't include this feature," +
|
|
"please build a binary that does so")
|
|
}
|