You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
exclamation-mark-charity/exclamation_mark_charity/runner.py

18 lines
393 B
Python

import discord
from discord.ext import commands
from discord.ext.commands import Context
from exclamation_mark_charity import BOT_PREFIX, BOT_TOKEN
intents = discord.Intents.default()
intents.members = True
bot = commands.Bot(command_prefix=BOT_PREFIX, description="idk", intents=intents)
@bot.command()
async def charity(ctx: Context):
await ctx.send("!charity")
bot.run(BOT_TOKEN)