├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── Dockerfile ├── package.json ├── pic ├── step-1.png └── step-2.png ├── readme.md ├── src ├── app.ts ├── notify.ts ├── notify_channel.ts └── notity_type.ts └── tsconfig.json /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ispace-top/WeChatNotify/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | yarn.lock 2 | node_modules/ 3 | build/ 4 | package-lock.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ispace-top/WeChatNotify/HEAD/Dockerfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ispace-top/WeChatNotify/HEAD/package.json -------------------------------------------------------------------------------- /pic/step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ispace-top/WeChatNotify/HEAD/pic/step-1.png -------------------------------------------------------------------------------- /pic/step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ispace-top/WeChatNotify/HEAD/pic/step-2.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ispace-top/WeChatNotify/HEAD/readme.md -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ispace-top/WeChatNotify/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ispace-top/WeChatNotify/HEAD/src/notify.ts -------------------------------------------------------------------------------- /src/notify_channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ispace-top/WeChatNotify/HEAD/src/notify_channel.ts -------------------------------------------------------------------------------- /src/notity_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ispace-top/WeChatNotify/HEAD/src/notity_type.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ispace-top/WeChatNotify/HEAD/tsconfig.json --------------------------------------------------------------------------------