11 lines
342 B
Python
11 lines
342 B
Python
import os
|
|
|
|
from support import SupportSC
|
|
|
|
if os.path.exists(os.path.join(os.path.dirname(__file__), 'tving.py')):
|
|
from .tving import SupportTving
|
|
from .wavve import SupportWavve
|
|
else:
|
|
SupportTving = SupportSC.load_module_f(__file__, 'tving').SupportTving
|
|
SupportWavve = SupportSC.load_module_f(__file__, 'wavve').SupportWavve
|