Files
buildx/commands/policy/json_schema.go
T
2026-01-14 09:10:34 -08:00

24 lines
478 B
Go

package policy
import (
"github.com/pkg/errors"
"github.com/spf13/cobra"
)
func jsonSchemaCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "json-schema",
Short: "Print policy JSON schema",
Args: cobra.NoArgs,
DisableFlagsInUseLine: true,
RunE: func(cmd *cobra.Command, args []string) error {
return runJSONSchema()
},
}
return cmd
}
func runJSONSchema() error {
return errors.New("not implemented")
}