feat: add donate command to support the developer

This commit is contained in:
2026-04-04 19:10:33 +11:00
parent f40856d747
commit 3c45406f6f
2 changed files with 22 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ import bannerCmd from './scripts/commands/banner.js';
import githubCmd from './scripts/commands/github.js';
import contactCmd from './scripts/commands/contact.js';
import privacyCmd from './scripts/commands/privacy.js';
import donateCmd from './scripts/commands/donate.js';
import blueskyCmd from './scripts/commands/bluesky.js';
import numbermatchCmd, { gameMode, processGameInput, handleTileClick } from './scripts/commands/numbermatch.js';
import samsayCmd from './scripts/commands/samsay.js';
@@ -544,6 +545,10 @@ const commands = {
description: privacyCmd.description,
execute: (args) => privacyCmd.execute(term, writeClickable, VERSION, args, commandHistory)
},
donate: {
description: donateCmd.description,
execute: (args) => donateCmd.execute(term, writeClickable, VERSION, args, commandHistory)
},
bluesky: {
description: blueskyCmd.description,
execute: async (args) => await blueskyCmd.execute(term, writeClickable, VERSION, args, commandHistory)