Files
edc_server/run.py

8 lines
112 B
Python

#!/usr/bin/env python3
"""EDC 服务入口"""
from src.server import run
if __name__ == "__main__":
run()