mirror of
https://github.com/arnaucube/argos.git
synced 2026-02-07 19:16:40 +01:00
implemented analysis of tweet, getting retweets to detect Bots
This commit is contained in:
7
main.go
7
main.go
@@ -66,6 +66,7 @@ func main() {
|
||||
4 - Delete Tweets
|
||||
5 - Delete Favs (Likes)
|
||||
6 - Tweet Random
|
||||
7 - Analyze tweet
|
||||
0 - Exit script
|
||||
option to select: `
|
||||
for {
|
||||
@@ -98,9 +99,13 @@ option to select: `
|
||||
optionDeleteFavs(client)
|
||||
break
|
||||
case "6":
|
||||
fmt.Println("selected 5 - Tweet random")
|
||||
fmt.Println("selected 6 - Tweet random")
|
||||
optionTweetRandom(client)
|
||||
break
|
||||
case "7":
|
||||
fmt.Println("selected 7 - Analyze Tweet")
|
||||
optionAnalyzeTweet(client)
|
||||
break
|
||||
case "0":
|
||||
fmt.Println("selected 0 - exit script")
|
||||
os.Exit(3)
|
||||
|
||||
Reference in New Issue
Block a user