├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── gofile.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayasnoushad/gofile-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayasnoushad/gofile-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayasnoushad/gofile-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayasnoushad/gofile-bot/HEAD/README.md -------------------------------------------------------------------------------- /gofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayasnoushad/gofile-bot/HEAD/gofile.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayasnoushad/gofile-bot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayasnoushad/gofile-bot/HEAD/requirements.txt --------------------------------------------------------------------------------