You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
274 B
12 lines
274 B
|
3 months ago
|
import os
|
||
|
|
import sys
|
||
|
|
|
||
|
|
from robyn import Robyn
|
||
|
|
|
||
|
|
# 自动将 web_server 目录加入 Python 路径
|
||
|
|
web_server_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||
|
|
if web_server_path not in sys.path:
|
||
|
|
sys.path.insert(0, web_server_path)
|
||
|
|
|
||
|
|
|
||
|
|
app = Robyn(__file__)
|