Как мне установить идентификатор канала для функции в discord.py
#python #discord.py Вопрос: def get_channel_id(client, message): with open('./json/welcome.json', 'r') as f: channel_id = json.load(f) return channel_id[str(message.guild.id)] @client.event async def on_member_join(member): embed = discord.Embed(colour=0x767429, description=f"Welcome to my server! You are the…