├── .github └── workflows │ └── sign.yml ├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── README.md ├── main.py └── requirements.txt /.github/workflows/sign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColaSign/haidan/HEAD/.github/workflows/sign.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test.txt 2 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColaSign/haidan/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColaSign/haidan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColaSign/haidan/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColaSign/haidan/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | --------------------------------------------------------------------------------