// ── The slash commands (phase 16, R11, D126) ────────────────────────────── // // Five read-only questions, answered from this module's own tables. No write // verbs, and no `/link`: the account link stays on R1's two surfaces. // // Registered as ONE batch in `index.js`. Names are bare words (§32.4 reading 1): // Discord scopes commands to the bot that owns them, and one module per site // (website#204) means no other module competes for them. None collides with the // bot's own built-ins, which core cannot see and the bot resolves against us. module.exports = [ require('./status.command'), require('./wipe.command'), require('./top.command'), require('./online.command'), require('./clan.command'), ]