Files
Convention-Python/[Test]/test.py
2025-07-09 17:39:50 +08:00

12 lines
238 B
Python

import sys
import os
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from Convention.Runtime.Config import *
def run():
print_colorful(ConsoleFrontColor.RED,"test")
if __name__ == "__main__":
run()