├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── run.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkwyu/gofile-dl/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkwyu/gofile-dl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkwyu/gofile-dl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkwyu/gofile-dl/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkwyu/gofile-dl/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkwyu/gofile-dl/HEAD/run.py --------------------------------------------------------------------------------