This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# myapp.py
from app import create_app, LogService
from utils import response
app = create_app()
#项目入口
if __name__ == "__main__":
#服务端运行在哪个ip地址上的哪个端口,是否开启调试,这里是本机上的5000端口
app.run(host="127.0.0.1", port=5000, debug=True)