1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-12-25 22:57:27 +00:00

WIP periodic tasks

This commit is contained in:
Myned 2017-12-07 15:52:04 -05:00
parent 186bb0f68f
commit 45395846c2
2 changed files with 7 additions and 1 deletions

View file

@ -17,3 +17,9 @@ class Post:
def __init__(self, bot): def __init__(self, bot):
self.bot = bot self.bot = bot
for task in u.tasks['periodic_gpm']:
self.bot.loop.create_task()
async def _check_posts(self, user, channel):
pass

View file

@ -68,7 +68,7 @@ def dump(obj, filename, *, json=False):
settings = setdefault('misc/settings.pkl', {'del_ctx': [], 'prefixes': {}}) settings = setdefault('misc/settings.pkl', {'del_ctx': [], 'prefixes': {}})
tasks = setdefault('cogs/tasks.pkl', {'auto_del': [], 'auto_rev': []}) tasks = setdefault('cogs/tasks.pkl', {'auto_del': [], 'auto_rev': [], 'periodic_gpm': []})
temp = setdefault('temp/temp.pkl', {'startup': ()}) temp = setdefault('temp/temp.pkl', {'startup': ()})
RATE_LIMIT = 2.2 RATE_LIMIT = 2.2