Converted commands mostly use some backwards-compatibility hack. Please don't mind it, I'll eventually get to it.
18 lines
441 B
Python
18 lines
441 B
Python
import re
|
|
import random
|
|
import itertools
|
|
import math
|
|
from collections import defaultdict
|
|
|
|
import botconfig
|
|
import src.settings as var
|
|
from src.utilities import *
|
|
from src import channels, users, debuglog, errlog, plog
|
|
from src.decorators import command, event_listener
|
|
from src.messages import messages
|
|
from src.events import Event
|
|
|
|
# Skeleton file for new roles, basically to get all the imports right and stuff
|
|
|
|
# vim: set sw=4 expandtab:
|