A RedBot cog for sending notifications when there are new founderless regions in NationStates.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
198 B

  1. from .founderlessnotify import FounderlessNotify
  2. from redbot.core.bot import Red
  3. def setup(bot: Red):
  4. cog = FounderlessNotify(bot)
  5. bot.add_cog(cog)
  6. bot.loop.create_task(cog.bg_loop())