18 lines
240 B
Go
18 lines
240 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var startCmd = &cobra.Command{
|
||
|
Use: "start",
|
||
|
Short: "Launch eww",
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
hm.LaunchEww()
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
ewwCmd.AddCommand(startCmd)
|
||
|
}
|