18 lines
380 B
Python
18 lines
380 B
Python
|
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
|