__main__.py 438 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
# -*- 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

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