This commit is contained in:
flaskfarm
2022-10-21 05:02:22 +09:00
parent 44e04a89d5
commit 2e46777d12
4 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
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