mirror of
https://github.com/BluemediaGER/discord-cleanup-bot.git
synced 2024-11-09 19:45:29 +01:00
Add client activity
This commit is contained in:
parent
67dbb444ab
commit
7d597dadec
4
bot.py
4
bot.py
|
@ -7,7 +7,7 @@ from sqlalchemy.orm import Session
|
|||
from models import Guild, Channel, Base
|
||||
|
||||
import discord
|
||||
from discord import app_commands
|
||||
from discord import app_commands, CustomActivity
|
||||
from discord.app_commands import Choice
|
||||
from discord.ext import tasks
|
||||
|
||||
|
@ -151,4 +151,6 @@ async def purge(interaction: discord.Interaction, days: int):
|
|||
await interaction.response.send_message(content='✅ Messages deleted.', delete_after=20)
|
||||
|
||||
|
||||
client.activity = CustomActivity(name="Cleaning up your sh*t")
|
||||
|
||||
client.run(token=os.getenv("BOT_TOKEN"), log_handler=None)
|
Loading…
Reference in a new issue