()
| 22037 | |
| 22038 | @app.route('/api/ip_graph', methods=['POST']) |
| 22039 | def ip_graph(): |
| 22040 | d = request.json or {} |
| 22041 | domain = d.get('domain', '') |
| 22042 | return jsonify(core.build_ip_graph(domain)) |
| 22043 | |
| 22044 | @app.route('/api/ip_whois', methods=['POST']) |
| 22045 | def ip_whois(): |
nothing calls this directly
no test coverage detected