lots of nonworking code
This commit is contained in:
parent
ed2eefb9cd
commit
d330df5711
9 changed files with 75 additions and 34 deletions
18
core/permissions.py
Normal file
18
core/permissions.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
class PermissionManager(object):
|
||||
def __init__(self, bot, conn):
|
||||
self.logger = bot.logger
|
||||
|
||||
self.logger.info("Creating permission manager for {}.".format(conn.name))
|
||||
|
||||
# stuff
|
||||
self.bot = bot
|
||||
self.conn = conn
|
||||
self.config = conn.config
|
||||
|
||||
self.group_perms = {}
|
||||
|
||||
self.reload()
|
||||
|
||||
def reload(self):
|
||||
self.logger.error("reload perms stub")
|
||||
pass
|
Reference in a new issue