hyprman/cmd/eww.go

17 lines
172 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{
Use:"eww" ,
Short: "eww integration",
}
func init() {
rootCmd.AddCommand(ewwCmd)
}