[modules] Separate modules into core & contrib

Also, improve errors when importing a module fails.

Also, add more tests.
This commit is contained in:
Tobias Witek 2020-03-06 14:14:34 +01:00
parent 47950240d0
commit efc2e4f94e
15 changed files with 38 additions and 10 deletions

7
modules/core/pasource.py Normal file
View file

@ -0,0 +1,7 @@
from .__pulseaudio import Module
class Module(Module):
def __init__(self, config):
super().__init__(config, 'source')
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4