|
@@ -145,7 +145,7 @@ func StringOscillator(s string, amplitude int) chan string {
|
|
|
return c
|
|
|
}
|
|
|
|
|
|
-func ClickRepeteadly(s *SavedGroups, c chan os.Signal) {
|
|
|
+func ClickRepeatedly(s *SavedGroups, c chan os.Signal) {
|
|
|
for index, g := range s.Groups {
|
|
|
fmt.Printf("- Press %v to select %v\n", index+1, g.Name)
|
|
|
}
|
|
@@ -207,7 +207,7 @@ func cleanUp(c chan os.Signal) chan int {
|
|
|
func interactWithUser(s *SavedGroups, yamlFile string, c chan os.Signal) {
|
|
|
addSavedGroup(s)
|
|
|
storeSavedGroups(s, yamlFile)
|
|
|
- ClickRepeteadly(s, c)
|
|
|
+ ClickRepeatedly(s, c)
|
|
|
}
|
|
|
|
|
|
func RunAutoClicker() {
|