import discord
from discord.ext import commands
from config import settings
bot = commands.Bot(command_prefix = settings['prefix'], intents = discord.Intents.all())
@bot.command()
async def day(ctx):
await ctx.send(choice(ctx.guild.members).mention)
bot.run(settings['token'])