hyprman/cmd/mako.go

23 lines
315 B
Go
Raw Normal View History

2024-05-21 15:41:20 -05:00
package cmd
import (
"fmt"
"github.com/spf13/cobra"
// "git.dayl.in/daylin/hyprman/internal"
)
var makoCmd = &cobra.Command{
Use:"mako" ,
Short: "mako integration",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("hahah mako baby")
},
}
func init() {
rootCmd.AddCommand(makoCmd)
}