Hello! The following problem has arisen. When I launch the bot via PyCharm, everything works great, but when I upload it to the hosting and try to launch it, it gives an error. This is the second bot on the hosting, the first one works great and without errors
Here is the main.py code
from disnake.ext import commands
from utils.config import TOKEN
bot = commands.Bot(
command_prefix="voice/",
intents=disnake.Intents.all(),
help_command=None,
reload=True
)
@bot.event
async def on_ready():
print(f'Bot run')
bot.load_extensions("cogs")
bot.run("token")```
config.py
```TOKEN = "token"
CATEGORY = 123
VoiceID = 123```
Error: