mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 09:20:08 +00:00
* Add `create-discordeno-bot` reference in README.md * Switch to deno tasks. * Fix `DISCORD_TOKEN` var * Fix `gateway` workers Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
8 lines
282 B
JSON
8 lines
282 B
JSON
{
|
|
"tasks": {
|
|
"rest": "deno run -A --unstable --import-map ./importMap.json ./src/rest/mod.ts",
|
|
"bot": "deno run -A --unstable --import-map ./importMap.json ./src/bot/mod.ts",
|
|
"gateway": "deno run -A --unstable --import-map ./importMap.json ./src/gateway/mod.ts"
|
|
}
|
|
}
|