FunkyBot/cogs/poll.py
Funky Waddle 9d56d9ccc5 initial
2025-06-16 03:06:06 -05:00

13 lines
253 B
Python

import discord
from discord.ext import commands
from libs.Cog import Cog
class Poll(Cog):
@commands.command()
async def poll(self, ctx, *, question):
print("poll command called")
async def setup(bot):
await bot.add_cog(Poll(bot))