I'm working on a reaction bot and i'm using disnake.Client to create my listener as I'd like to check all react events, not just ones for messages after bot start. I have a functioning listener for the on_raw_reaction_add event, but now i'm trying to add slash commands so the archived messages can be edited after the fact by a moderator.
When poking through the disnake docs I discovered the InteractionBot class, which looks like the proper interface to create commands with, however i've found no way to get both the Client and the Bot to run at the same time. What's the best solution for this? Should I create seperate python files and have two instances running or is there an easier method?
Here's a link to the current state of my project: https://github.com/washingdone/starboat