bd12a51bfb
Add a way to load modules located in modules/*
12 lines
197 B
Python
12 lines
197 B
Python
# pylint: disable=C0111,R0903
|
|
|
|
"""Test module
|
|
"""
|
|
|
|
import core.module
|
|
|
|
class Module(core.module.Module):
|
|
def __init__(self):
|
|
pass
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|