Add logic for parsing commandline options, and a preliminary stub for loading modules. Note: The idea is that core.module.load() will return a valid, but empty, module that displays an error, if the module cannot be loaded
9 lines
146 B
Python
9 lines
146 B
Python
|
|
def load(module_name):
|
|
pass
|
|
|
|
class Module(object):
|
|
def update(self):
|
|
pass
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|