mirror of
https://github.com/myned/modufur.git
synced 2024-12-24 14:27:27 +00:00
WIP periodic posting cog
This commit is contained in:
parent
be0d0916f6
commit
000e7a86e7
1 changed files with 18 additions and 0 deletions
18
src/main/cogs/periodic.py
Normal file
18
src/main/cogs/periodic.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
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
|
Loading…
Reference in a new issue