This commit is contained in:
Davte 2024-07-05 14:15:35 +02:00
parent 340e193ab6
commit b21e09cbb7
Signed by: Davte
GPG Key ID: 70336F92E6814706

View File

@ -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() {