├── .config ├── build.sh └── coloring.sh ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1_STUCK.md │ ├── 2_BUG.md │ ├── 3_SUGGEST.md │ ├── 4_UPGRADE.MD │ └── config.yml └── dependabot.yml ├── .gitignore ├── .replit ├── LICENSE ├── README.md ├── config.json ├── package.json ├── pnpm-lock.yaml ├── replit.nix ├── src ├── @types │ ├── bot.d.ts │ └── process.d.ts ├── bot.ts ├── index.ts ├── utils.ts └── web.ts └── tsconfig.json /.config/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/.config/build.sh -------------------------------------------------------------------------------- /.config/coloring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/.config/coloring.sh -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [JadeMin] 2 | custom: ["https://toss.me/KlartNET"] -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_STUCK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/.github/ISSUE_TEMPLATE/1_STUCK.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_BUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/.github/ISSUE_TEMPLATE/2_BUG.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3_SUGGEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/.github/ISSUE_TEMPLATE/3_SUGGEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4_UPGRADE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/.github/ISSUE_TEMPLATE/4_UPGRADE.MD -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/.replit -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/replit.nix -------------------------------------------------------------------------------- /src/@types/bot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/src/@types/bot.d.ts -------------------------------------------------------------------------------- /src/@types/process.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/src/@types/process.d.ts -------------------------------------------------------------------------------- /src/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/src/bot.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/src/web.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JadeMin/aterbot/HEAD/tsconfig.json --------------------------------------------------------------------------------