Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
Merge branch 'dev' of https://github.com/Synth-discord-bot/Synth into…
Browse files Browse the repository at this point in the history
… dev
  • Loading branch information
nixxoq committed Dec 31, 2023
2 parents ad36ae3 + 3cea520 commit 5bc0a9a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/cogs/DevCog.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import disnake
from disnake.ext import commands
from traceback import format_exception
import contextlib
import io
import textwrap

class Developers(commands.Cog):
def __init__(self, bot: commands.Bot):
super(Developers, self).__init__()
self.bot = bot

#TODO: EVAL WITHOUGHT INTERNET
#TODO: BLACKLIST SETTINGS
#TODO: COGS LOAD/UNLOAD/RELOAD

def setup(bot: commands.Bot) -> None:
bot.add_cog(Developers(bot))

0 comments on commit 5bc0a9a

Please sign in to comment.