diakonos/cherubim/standards.py

18 lines
380 B
Python
Raw Normal View History

2024-01-17 00:20:44 -05:00
from redbot.core import commands
import discord
import asyncio
import os
dir_path = os.path.dirname(__file__)
class Standards(commands.Cog):
def __init__(self, bot):
self.bot = bot
# todo: update joining logic
async def on_member_update(self, member):
pass
# todo: update leaving logic
async def on_member_remove(self, member):
pass