mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-23 08:01:15 +00:00
29 lines
977 B
Go
29 lines
977 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/rsteube/carapace"
|
|
"github.com/rsteube/carapace-bin/completers/flutter_completer/cmd/action"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var emulatorsCmd = &cobra.Command{
|
|
Use: "emulators",
|
|
Short: "List, launch and create emulators",
|
|
Run: func(cmd *cobra.Command, args []string) {},
|
|
}
|
|
|
|
func init() {
|
|
carapace.Gen(emulatorsCmd).Standalone()
|
|
|
|
emulatorsCmd.Flags().Bool("cold", false, "Cold boot the emulator instance (Android only).")
|
|
emulatorsCmd.Flags().Bool("create", false, "Creates a new Android emulator based on a Pixel device.")
|
|
emulatorsCmd.Flags().BoolP("help", "h", false, "Print this usage information.")
|
|
emulatorsCmd.Flags().String("launch", "", "The full or partial ID of the emulator to launch.")
|
|
emulatorsCmd.Flags().String("name", "", "Specifies a name for the emulator being created.")
|
|
rootCmd.AddCommand(emulatorsCmd)
|
|
|
|
carapace.Gen(emulatorsCmd).FlagCompletion(carapace.ActionMap{
|
|
"launch": action.ActionEmulators(),
|
|
})
|
|
}
|