mirror of
https://github.com/veops/cmdb.git
synced 2025-09-23 05:49:18 +08:00
16 lines
258 B
Python
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) |