23 lines
315 B
Go
23 lines
315 B
Go
|
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)
|
||
|
}
|
||
|
|
||
|
|