2024-03-11 19:32:42 +01:00

19 lines
305 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var emuCmd = &cobra.Command{
Use: "emu",
Short: "run emulator console command",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(emuCmd).Standalone()
rootCmd.AddCommand(emuCmd)
}