1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2025-02-01 02:25:19 +00:00
modufur/src/cogs/periodic.py

26 lines
523 B
Python
Raw Normal View History

2017-12-01 18:05:11 -05:00
import asyncio
import json
from datetime import datetime as dt
import discord as d
from discord import errors as err
from discord.ext import commands as cmds
from discord.ext.commands import errors as errext
from misc import exceptions as exc
from misc import checks
from utils import utils as u
class Post:
def __init__(self, bot):
self.bot = bot
2017-12-07 15:52:04 -05:00
async def _check_posts(self, user, channel):
pass
2017-12-31 21:22:38 -05:00
@cmds.group(aliases=['update', 'up', 'u'])
async def updates(self, ctx):
pass