may require a change to how I'm currently handling API requests but this was somewhat predicted. The biggest change is that currently when adding commands they are added send one by one - there is a mass send API for commands which I will need to change to. As there's not that many discord REST APIs, it might be worth making each endpoint into its own function which can have data passed to it, and each function will keep track of requests and handle rate limiting for that endpoint, which allows for differences in rate limits between different endpoints, and also makes it easier to use the bot by just doing function calls
may require a change to how I'm currently handling API requests but this was somewhat predicted. The biggest change is that currently when adding commands they are added send one by one - there is a mass send API for commands which I will need to change to. As there's not that many discord REST APIs, it might be worth making each endpoint into its own function which can have data passed to it, and each function will keep track of requests and handle rate limiting for that endpoint, which allows for differences in rate limits between different endpoints, and also makes it easier to use the bot by just doing function calls