summaryrefslogtreecommitdiff
path: root/src/commands.js
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-07 02:28:34 -0700
committerFuwn <[email protected]>2025-09-07 02:28:34 -0700
commit188c714f43635fb57eac70b167dba682d6b93a2f (patch)
tree28a5bc64a6a8efd78c19cdaa666b98e42d3b90b5 /src/commands.js
parentfeat: Add top command (diff)
downloadumabotdiscord-188c714f43635fb57eac70b167dba682d6b93a2f.tar.xz
umabotdiscord-188c714f43635fb57eac70b167dba682d6b93a2f.zip
build: Switch to TypeScript
Diffstat (limited to 'src/commands.js')
-rw-r--r--src/commands.js55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/commands.js b/src/commands.js
deleted file mode 100644
index c2faac5..0000000
--- a/src/commands.js
+++ /dev/null
@@ -1,55 +0,0 @@
-export const HOT_COMMAND = {
- name: 'hot',
- description: 'Fetch a random hot post from r/okbuddyumamusume',
-};
-
-export const ROLEPLAY_COMMAND = {
- name: 'roleplay',
- description: 'Fetch a random hot roleplay post from r/okbuddyumamusume',
-};
-
-export const NSFW_COMMAND = {
- name: 'nsfw',
- description:
- 'Fetch a random NSFW post from r/okbuddyumamusume (NSFW channels only)',
-};
-
-export const TOP_COMMAND = {
- name: 'top',
- description:
- 'Fetch a random top post from r/okbuddyumamusume (defaults to today)',
- options: [
- {
- type: 3,
- name: 'time',
- description: 'Time period for top posts (defaults to today)',
- required: false,
- choices: [
- {
- name: 'Now',
- value: 'hour',
- },
- {
- name: 'Today',
- value: 'day',
- },
- {
- name: 'This Week',
- value: 'week',
- },
- {
- name: 'This Month',
- value: 'month',
- },
- {
- name: 'This Year',
- value: 'year',
- },
- {
- name: 'All Time',
- value: 'all',
- },
- ],
- },
- ],
-};