summaryrefslogtreecommitdiff
path: root/modules/intents/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/intents/__init__.py')
-rw-r--r--modules/intents/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/intents/__init__.py b/modules/intents/__init__.py
new file mode 100644
index 0000000..1cb91d4
--- /dev/null
+++ b/modules/intents/__init__.py
@@ -0,0 +1,4 @@
+from os.path import dirname, basename, isfile, join
+import glob
+modules = glob.glob(join(dirname(__file__), "*.py"))
+__all__ = [ basename(f)[:-3] for f in modules if isfile(f) and not f.endswith('__init__.py')] \ No newline at end of file