__main__.py 442 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__':
pengxiong@wealthgrow.cn's avatar
pengxiong@wealthgrow.cn committed
12 13
    app.run('127.0.0.1', port=8000, debug=True)