This commit is contained in:
flaskfarm
2022-10-26 20:32:58 +09:00
parent c0b08a8222
commit 1595599a65
7 changed files with 11 additions and 2 deletions

View File

@@ -3,8 +3,10 @@ import os
from support import SupportSC
if os.path.exists(os.path.join(os.path.dirname(__file__), 'tving.py')):
from .seezn import SupportSeezn
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
SupportSeezn = SupportSC.load_module_f(__file__, 'seezn').SupportSeezn