├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── config.py ├── main.py └── requirements.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moksh-Bhardwaj/GreyMatters-Bypass-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moksh-Bhardwaj/GreyMatters-Bypass-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moksh-Bhardwaj/GreyMatters-Bypass-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moksh-Bhardwaj/GreyMatters-Bypass-Bot/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moksh-Bhardwaj/GreyMatters-Bypass-Bot/HEAD/config.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moksh-Bhardwaj/GreyMatters-Bypass-Bot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moksh-Bhardwaj/GreyMatters-Bypass-Bot/HEAD/requirements.txt --------------------------------------------------------------------------------