I'm switching back to the sapphire subcommand plugin from kanames since it's not updated and I'm running into a minor issue I'm not sure how to solve. With the sapphire subcommand plugin all subcommands in a single top level subcommand are supposed to have the chatinputrun methods defined in the same file. This makes my subcommand files very long and hard to get to the code for individual commands. I've tried putting the logic for the commands in their own file, but then I get "Error [EMPTY_MODULE]: A compatible class export was not found" for files that define command logic but not the commands themselves because I have them grouped together in the commands folder like in the attached image. The game_parent file is where the command registration is and the chatinput run methods there call methods from guess/whack etc to perform command logic. I can move them to somewhere not under commands folder but I'd like to keep them all the logic together so it's not confusing. Is there a better way to do this?