summaryrefslogtreecommitdiff
path: root/apps/fx.py
blob: 4ab5493efc8c456882022d2bbdc0667b21e2ab26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 风险评估接口
from apiflask import APIBlueprint

bp = APIBlueprint('fx', __name__, url_prefix='/fx')


# 高风险节点信息
@bp.get("/fxnode")
def get_fxnodes():
    pass


# 高风险节点邻居(输入高风险节点地址)
@bp.get("/fxnode/<string:id>")
def get_fxnode_nei():
    pass

# IP关联信息


# AS关联


# ISP关联