11 lines
198 B
Python
11 lines
198 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
中央服务器唯一入口。
|
|
启动方式: python app.py
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
if __name__ == "__main__":
|
|
from server.main import main
|
|
main()
|