A RedBot cog for sending notifications when there are new founderless regions in NationStates.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

9 satır
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())