for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
from discord.utils import get
from discord.ext import commands
from cogs.cogbase import BaseCog
from modules.get_settings import get_settings
guild_ids = get_settings("guild")
class LeaderboardsCog(BaseCog):
def __init__(self, base):
super().__init__(base)
async def update_leaderboards(self):
pass
async def print_leaderboards(self):
def setup(bot: commands.Bot):
bot.add_cog(LeaderboardsCog(bot))