diff options
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关联 - |
