11 lines
183 B
Python
11 lines
183 B
Python
#!/usr/bin/env python3
|
|
|
|
from __future__ import annotations
|
|
|
|
from gateway.http_app import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# 作为脚本执行时启动 HTTP 服务。
|
|
main()
|