package cmd
import (
"github.com/spf13/cobra"
)
var publicApiWorkspacesCmd = &cobra.Command{
Use: "workspaces",
Aliases: []string{"ws"},
Short: "Interact with workspaces through the public-API",
}
func init() {
publicApiCmd.AddCommand(publicApiWorkspacesCmd)
}