Files
cmdb/cmdb-api/core/special.py
2015-12-29 10:35:10 +08:00

16 lines
258 B
Python

# -*- coding:utf-8 -*-
from flask import Blueprint
from flask import jsonify
special = Blueprint(__name__, "special")
@special.route("/api/v0.1/special", methods=["GET"])
def index():
"""
定义专用接口
"""
return jsonify(code=200)