blob: 489353a9495c6c59bf8bf4e73cf8feca8a86c119 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package env
import (
"github.com/spf13/cobra"
)
var Cmd = &cobra.Command{
Use: "env",
Short: "Manage environment variables",
Long: "Manage environment variables for deployed applications",
}
func init() {
Cmd.AddCommand(listCmd)
Cmd.AddCommand(setCmd)
Cmd.AddCommand(unsetCmd)
}
|