pip install ruythcoreimport ruythcore
bot = ruythcore.Client("YOUR_TOKEN_HERE", prefix="!")
@bot.command("ping")
async def ping(ctx):
await ctx.reply("🏓 Pong from RuythCore!")
@bot.slash_command("hello")
async def hello(ctx):
await ctx.reply("Hello from RuythCore!")
@bot.events.on("ready")
async def on_ready(data):
print("Ready ✅")
bot.start()python <namefile>.py