app.py 562 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
# -*- encoding: utf-8 -*-
# -----------------------------------------------------------------------------
# @File Name  : app.py
# @Time       : 2020/11/18 下午12:45
# @Author     : X. Peng
# @Email      : acepengxiong@163.com
# @Software   : PyCharm
# -----------------------------------------------------------------------------

from flask import Flask
from flask_restful import Api
pengxiong@wealthgrow.cn's avatar
pengxiong@wealthgrow.cn committed
12 13
from app.router.version1 import add_route
from app.api.engine import work_dir
14

pengxiong@wealthgrow.cn's avatar
pengxiong@wealthgrow.cn committed
15
app = Flask(__name__, template_folder=work_dir+'/app/templates')
16
api = Api(app)
pengxiong@wealthgrow.cn's avatar
pengxiong@wealthgrow.cn committed
17
add_route(api)