返信で投票を開始
code:create_poll.py
from mipac.models import poll
# ----- pollをimport -----
# メンションでpollって文字きたらやる
@commands.mention_command(text='poll')
async def poll_start(self, ctx: Context):
# 60秒(60,000msec)後終了する投票を開始(投票A, 投票Bのうち1つだけ選択可能)
await ctx.message.api.action.reply(f'投票を始めます(開催者:{ctx.message.author.username})',poll=poll.MiPoll(poll=poll.ICreatePoll(multiple=False, choices=('投票A', '投票B'), expired_after=60000)))