mirror of
https://github.com/veops/cmdb.git
synced 2025-08-08 14:50:56 +08:00
12 lines
137 B
Python
12 lines
137 B
Python
# -*- coding:utf-8 -*-
|
|
|
|
|
|
from flask import Blueprint
|
|
|
|
|
|
statis = Blueprint("statis", __name__)
|
|
|
|
|
|
@statis.route("")
|
|
def statis():
|
|
pass |