Is there a good way to register all commands at once?
I tried literally everything to get
getKord().createGlobalApplicationCommands {}
getKord().createGlobalApplicationCommands {}
to function
But unless i wanna create a massive file with every command in there seperately, it wont work.
ATM all the registering code is inside its own class files. but as soon as i try doing
input("a","b") {}
input("a","b") {}
(for example) inside a loop it wont work, even if said loop only runs once. Now my previous method of just spamming dc with register requests for each command on startup... works... but i would rather not have to do that, since sooner or later itll ratelimit me.