import discord from discord.ext import commands from discord.ext.commands import Bot import os # 디스코드 봇 토큰 ISC = "YISC" # 디스코드 봇 클라이언트 생성 client = Bot(commandprefix='!') # 메시지 처리 함수 async def processmessage(message): # 메시지를 받아 처리 if message.author == client.user: return # 메시지 처리 로직 추가 await message.channel.send(f"AI: {message.content}") # 이벤트 핸들 등록 @client.event async def onready(): print(f'{client.user} 봇이 준비되었습니다.') @client.event async def onmessage(message): await processmessage(message) # 봇 실행 client.run(ISC)