Separate out everything into files and implement a modules system to segment commands

This commit is contained in:
2018-02-23 22:05:40 +00:00
parent 4b3541625a
commit cb7142ef88
30 changed files with 1346 additions and 1123 deletions

View File

@@ -0,0 +1,15 @@
from os import listdir
from core.main import *
from utils.logging.log import *
import commands
def loadCommands(func):
for filename in listdir('commands'):
if filename.endswith('.py') and filename != "__init__.py":
commandName = filename[0:-3]
className = commandName.capitalize()
#try:
__import__('commands.%s' % commandName)
eval('commands.%s.%s(func)' % (commandName, className))
#except Exception as err:
# error("Exception while loading command %s:\n%s" % (commandName, err))