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
Dylan Dizon fd7c4d44f5 Prune incomplete, vestigial, and irrelevant code
- Completely removed music cog for now
- Halted Google Play Music integration
- Removed "periodic_gpm" items from tasks file
2018-11-03 20:04:39 -04:00

25 lines
523 B
Python

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
async def _check_posts(self, user, channel):
pass
@cmds.group(aliases=['update', 'up', 'u'])
async def updates(self, ctx):
pass