FunkyBot/cogs/poll.py

13 lines
253 B
Python
Raw Normal View History

2025-06-16 08:06:06 +00:00
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))