mirror of
https://github.com/project-zot/zot.git
synced 2024-12-30 22:34:13 -05:00
16 lines
181 B
Go
16 lines
181 B
Go
|
// +build minimal
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/anuvu/zot/pkg/exporter/cli"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
if err := cli.NewExporterCmd().Execute(); err != nil {
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
}
|