hyprman/cmd/eww.go

15 lines
169 B
Go
Raw Normal View History

2024-05-21 15:41:20 -05:00
package cmd
import (
"github.com/spf13/cobra"
)
var ewwCmd = &cobra.Command{
2024-05-31 14:59:23 -05:00
Use: "eww",
Short: "eww integration",
2024-05-21 15:41:20 -05:00
}
func init() {
2024-05-31 14:59:23 -05:00
rootCmd.AddCommand(ewwCmd)
2024-05-21 15:41:20 -05:00
}