├── .gitattributes ├── .github └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── bot ├── bot.go ├── maidan │ └── maidan.go └── nicknames.go ├── config.yml ├── config ├── config.go └── parser.go ├── go.mod ├── go.sum ├── guard └── guard.go ├── main.go ├── methods ├── extreme1.go └── methods.go └── proxies ├── dialer.go └── proxies.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/README.md -------------------------------------------------------------------------------- /bot/bot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/bot/bot.go -------------------------------------------------------------------------------- /bot/maidan/maidan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/bot/maidan/maidan.go -------------------------------------------------------------------------------- /bot/nicknames.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/bot/nicknames.go -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/config.yml -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/config/config.go -------------------------------------------------------------------------------- /config/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/config/parser.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/go.sum -------------------------------------------------------------------------------- /guard/guard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/guard/guard.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/main.go -------------------------------------------------------------------------------- /methods/extreme1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/methods/extreme1.go -------------------------------------------------------------------------------- /methods/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/methods/methods.go -------------------------------------------------------------------------------- /proxies/dialer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/proxies/dialer.go -------------------------------------------------------------------------------- /proxies/proxies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavMda/go-bots/HEAD/proxies/proxies.go --------------------------------------------------------------------------------