Deep-Live-Cam/run.py

12 lines
246 B
Python
Raw Normal View History

2023-09-24 21:36:57 +08:00
#!/usr/bin/env python3
from modules import core
import sys
import os
# python embedded support: Ensure the script's folder is in sys.path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
2023-09-24 21:36:57 +08:00
if __name__ == '__main__':
core.run()