[core/engine] Add module loading logic

Allow the engine to load modules from the bumblebee/modules/ directory.

see #23
This commit is contained in:
Tobi-wan Kenobi 2016-12-04 11:09:10 +01:00
parent cf1693548b
commit a2c6214baa
5 changed files with 65 additions and 5 deletions

11
bumblebee/modules/test.py Normal file
View file

@ -0,0 +1,11 @@
# pylint: disable=C0111,R0903
"""Test module"""
import bumblebee.engine
class Module(bumblebee.engine.Module):
def __init__(self, engine):
super(Module, self).__init__(engine)
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4