Files
cmdb/core/statis.py
2016-01-01 09:40:47 +08:00

12 lines
137 B
Python

# -*- coding:utf-8 -*-
from flask import Blueprint
statis = Blueprint("statis", __name__)
@statis.route("")
def statis():
pass