726ec91a79
FIX: Fixed Issues of Selena not starting up
27 lines
719 B
Python
27 lines
719 B
Python
import discord
|
|
import config
|
|
|
|
|
|
class Selena(discord.Client):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.tree = discord.app_commands.CommandTree(self)
|
|
|
|
async def setup_hook(self):
|
|
await self.load_extension("modules.spotify_module")
|
|
await self.tree.sync()
|
|
|
|
async def load_extension(self, name):
|
|
module = __import__(name, fromlist=["setup"])
|
|
await module.setup(self)
|
|
|
|
async def on_ready(self):
|
|
print(f'Logged in as {self.user} (ID: {self.user.id})')
|
|
print('------')
|
|
|
|
|
|
if __name__ == "__main__":
|
|
intents = discord.Intents.default()
|
|
client = Selena(intents=intents)
|
|
client.run(config.DISCORD_TOKEN)
|