Skip to content

Instantly share code, notes, and snippets.

View wiktorpp's full-sized avatar
🐱
*blep*

Wiktor Pyk wiktorpp

🐱
*blep*
View GitHub Profile
@wiktorpp
wiktorpp / cogs_slash_test.py
Last active September 26, 2023 20:28 — forked from 15696/cogs.py
Simple cogs example in discord.py (tested on 2.0.1)
#cogs / test.py
from discord.ext import commands
class Test(commands.Cog):
def __init__(self, client):
self.client = client
@commands.hybrid_command()
@commands.cooldown(1, 10, commands.BucketType.user)