├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── package.json ├── src ├── account_utils.ts ├── auto-invite.ts ├── bot.ts ├── calendar.ts ├── coin.ts ├── exercise-puncher.ts ├── five_card_poker.ts ├── fontgen │ ├── ErZiYuanMengManJian.ttf │ ├── bg.png │ └── fontgen.ts ├── gfmwatch.ts ├── index.ts ├── oss.ts ├── red_envelop.ts ├── repeater.ts ├── stat.ts ├── std52poker.ts ├── syncer.ts └── three_card_poker.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/account_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/account_utils.ts -------------------------------------------------------------------------------- /src/auto-invite.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/bot.ts -------------------------------------------------------------------------------- /src/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/calendar.ts -------------------------------------------------------------------------------- /src/coin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/coin.ts -------------------------------------------------------------------------------- /src/exercise-puncher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/exercise-puncher.ts -------------------------------------------------------------------------------- /src/five_card_poker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/five_card_poker.ts -------------------------------------------------------------------------------- /src/fontgen/ErZiYuanMengManJian.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/fontgen/ErZiYuanMengManJian.ttf -------------------------------------------------------------------------------- /src/fontgen/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/fontgen/bg.png -------------------------------------------------------------------------------- /src/fontgen/fontgen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/fontgen/fontgen.ts -------------------------------------------------------------------------------- /src/gfmwatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/gfmwatch.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/oss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/oss.ts -------------------------------------------------------------------------------- /src/red_envelop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/red_envelop.ts -------------------------------------------------------------------------------- /src/repeater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/repeater.ts -------------------------------------------------------------------------------- /src/stat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/stat.ts -------------------------------------------------------------------------------- /src/std52poker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/std52poker.ts -------------------------------------------------------------------------------- /src/syncer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/syncer.ts -------------------------------------------------------------------------------- /src/three_card_poker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/src/three_card_poker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssine/wechat-bot/HEAD/tsconfig.json --------------------------------------------------------------------------------