contrib/cmd/runkperf/commands/data/root.go (12 lines of code) (raw):
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
package data
import (
"github.com/Azure/kperf/contrib/cmd/runkperf/commands/data/configmaps"
"github.com/urfave/cli"
)
var Command = cli.Command{
Name: "data",
Usage: "Create data for runkperf",
Subcommands: []cli.Command{
configmaps.Command,
},
}