├── .gitignore ├── README.md ├── go.mod ├── go.sum ├── main.go └── task ├── datadome.go ├── footsite.go ├── profile.go ├── proxy.go └── webhook.go /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw6602/Footsite-Bot/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw6602/Footsite-Bot/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw6602/Footsite-Bot/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw6602/Footsite-Bot/HEAD/main.go -------------------------------------------------------------------------------- /task/datadome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw6602/Footsite-Bot/HEAD/task/datadome.go -------------------------------------------------------------------------------- /task/footsite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw6602/Footsite-Bot/HEAD/task/footsite.go -------------------------------------------------------------------------------- /task/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw6602/Footsite-Bot/HEAD/task/profile.go -------------------------------------------------------------------------------- /task/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw6602/Footsite-Bot/HEAD/task/proxy.go -------------------------------------------------------------------------------- /task/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw6602/Footsite-Bot/HEAD/task/webhook.go --------------------------------------------------------------------------------