__main__.py 469 Bytes
Newer Older
pengxiong's avatar
pengxiong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# -*- encoding: utf-8 -*-
# -----------------------------------------------------------------------------
# @File Name  : __main__.py
# @Time       : 2020/11/18 下午3:17
# @Author     : X. Peng
# @Email      : acepengxiong@163.com
# @Software   : PyCharm
# -----------------------------------------------------------------------------
from app.api.app import app
from app.api.engine import env

if __name__ == '__main__':
    app.run('0.0.0.0', port=80, debug=True)