mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
ada21ed842
Files were added to be built whether an extension is on or off. New build tags were added for each extension, while minimal and extended disappeared. added custom binary naming depending on extensions used and changed references from binary to binary-extended added automated blackbox tests for sync, search, scrub, metrics added contributor guidelines Signed-off-by: Alex Stan <alexandrustan96@yahoo.ro>
16 lines
200 B
Go
16 lines
200 B
Go
//go:build !metrics
|
|
// +build !metrics
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"zotregistry.io/zot/pkg/exporter/cli"
|
|
)
|
|
|
|
func main() {
|
|
if err := cli.NewExporterCmd().Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|