diff options
| author | handingkang <[email protected]> | 2024-01-19 17:50:57 +0800 |
|---|---|---|
| committer | handingkang <[email protected]> | 2024-01-19 17:50:57 +0800 |
| commit | c423b3072b19c34a7f777cfa7e019baac6c3d7f1 (patch) | |
| tree | 60fb4edd5df29a4cb835211ce6c2d0b0ac8b5250 /apps/fx.py | |
| parent | 54a5df53fb0c69c3a812234702335451c356c369 (diff) | |
Diffstat (limited to 'apps/fx.py')
| -rw-r--r-- | apps/fx.py | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -1,23 +1,24 @@ # 风险评估接口 +from apiflask import APIBlueprint - -# 高风险节点信息 - +bp = APIBlueprint('fx', __name__, url_prefix='/fx') - -# 高风险节点邻居(输入高风险节点ID) +# 高风险节点信息 [email protected]("/fxnode") +def get_fxnodes(): + pass +# 高风险节点邻居(输入高风险节点地址) [email protected]("/fxnode/<string:id>") +def get_fxnode_nei(): + pass # IP关联信息 - # AS关联 - - # ISP关联 - |
