13 lines
253 B
Python
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))
|