├── .github └── workflows │ ├── add-project.yml │ ├── update-contributers.yml │ └── update-readme.yml ├── .gitignore ├── CONTRIBUTING.md ├── README.md └── assets ├── add.py ├── contributers.py ├── contributers.svg ├── guide.pdf └── update_readme.py /.github/workflows/add-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zitann/HarmonyOS-Haps/HEAD/.github/workflows/add-project.yml -------------------------------------------------------------------------------- /.github/workflows/update-contributers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zitann/HarmonyOS-Haps/HEAD/.github/workflows/update-contributers.yml -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zitann/HarmonyOS-Haps/HEAD/.github/workflows/update-readme.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /assets/__pycache__/ 2 | /.venv/ -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zitann/HarmonyOS-Haps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zitann/HarmonyOS-Haps/HEAD/README.md -------------------------------------------------------------------------------- /assets/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zitann/HarmonyOS-Haps/HEAD/assets/add.py -------------------------------------------------------------------------------- /assets/contributers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zitann/HarmonyOS-Haps/HEAD/assets/contributers.py -------------------------------------------------------------------------------- /assets/contributers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zitann/HarmonyOS-Haps/HEAD/assets/contributers.svg -------------------------------------------------------------------------------- /assets/guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zitann/HarmonyOS-Haps/HEAD/assets/guide.pdf -------------------------------------------------------------------------------- /assets/update_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zitann/HarmonyOS-Haps/HEAD/assets/update_readme.py --------------------------------------------------------------------------------