17 lines
172 B
Go
17 lines
172 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var ewwCmd = &cobra.Command{
|
||
|
Use:"eww" ,
|
||
|
Short: "eww integration",
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
rootCmd.AddCommand(ewwCmd)
|
||
|
}
|
||
|
|
||
|
|