2023-09-24 21:36:57 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from modules import core
|
2025-05-03 13:33:36 +08:00
|
|
|
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()
|