mirror of
https://github.com/myned/modufur.git
synced 2025-02-01 02:25:19 +00:00
fd7c4d44f5
- Completely removed music cog for now - Halted Google Play Music integration - Removed "periodic_gpm" items from tasks file
25 lines
523 B
Python
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
|