image: add go code to upload image info and measurements

This commit is contained in:
Malte Poll 2023-05-23 15:09:14 +02:00 committed by Malte Poll
parent b8751f35f9
commit 217a744606
14 changed files with 745 additions and 3 deletions

View file

@ -41,6 +41,8 @@ func newRootCmd() *cobra.Command {
rootCmd.SetOut(os.Stdout)
rootCmd.AddCommand(cmd.NewImageCmd())
rootCmd.AddCommand(cmd.NewInfoCmd())
rootCmd.AddCommand(cmd.NewMeasurementsCmd())
return rootCmd
}