pulumi/cmd/lumi/pack.go
Matt Ellis a6eabdc34b Move a bunch of code around
Move most of the guts of `lumi` into the newly created `engine`
package.
2017-08-24 18:00:46 -07:00

21 lines
379 B
Go

// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
package main
import (
"github.com/spf13/cobra"
)
func newPackCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "pack",
Short: "Manage packages",
}
cmd.AddCommand(newPackEvalCmd())
cmd.AddCommand(newPackInfoCmd())
cmd.AddCommand(newPackGetCmd())
cmd.AddCommand(newPackVerifyCmd())
return cmd
}