change export order to match import order

This commit is contained in:
Ean Milligan 2025-05-03 21:07:06 -04:00
parent 65a182cb50
commit 058695415e
3 changed files with 18 additions and 18 deletions

View File

@ -18,22 +18,22 @@ import { stats } from 'commands/stats.ts';
import { version } from 'commands/version.ts';
export default {
ping,
rip,
rollHelp,
rollDecorators,
api,
audit,
emoji,
handleMentions,
heatmap,
help,
info,
privacy,
version,
report,
stats,
api,
emoji,
roll,
handleMentions,
audit,
heatmap,
optOut,
optIn,
optOut,
ping,
privacy,
rip,
report,
roll,
rollDecorators,
rollHelp,
stats,
version,
};

View File

@ -5,9 +5,9 @@ import { showHideWarn } from 'commands/apiCmd/showHideWarn.ts';
import { status } from 'commands/apiCmd/status.ts';
export default {
help,
allowBlock,
help,
deleteGuild,
status,
showHideWarn,
status,
};

View File

@ -3,7 +3,7 @@ import { auditGuilds } from 'commands/auditCmd/auditGuilds.ts';
import { auditHelp } from 'commands/auditCmd/auditHelp.ts';
export default {
auditHelp,
auditDB,
auditGuilds,
auditHelp,
};