This is a small and very simple twitter bot, which retweets based on search queries.
Add a settings.yaml file, same structure as settings.example.yaml and add your API Tokens etc. plus the search strings you want to retweet.
When done, you can run it by doing:
$ go run tweetbot.goYou can also compile a binary, depending on where it has to run
$ go build tweetbot.goor if you want it to run on you raspberry pi.
env GOOS=linux GOARCH=arm GOARM=5 go build tweetbot.goThanks to Miloskrca for helping with the initial development and for introducing me to Golang.