Skip to content
Snippets Groups Projects
Commit 16640f21 authored by Erik Reid's avatar Erik Reid
Browse files

removed empty opsdb route

parent 5f49dd10
No related branches found
No related tags found
No related merge requests found
......@@ -30,9 +30,6 @@ def create_app():
from inventory_provider.routes import jobs
app.register_blueprint(jobs.routes, url_prefix='/jobs')
from inventory_provider.routes import opsdb
app.register_blueprint(opsdb.routes, url_prefix='/opsdb')
from inventory_provider.routes import classifier
app.register_blueprint(classifier.routes, url_prefix='/classifier')
......
import collections
import json
import re
from flask import Blueprint, jsonify
from inventory_provider.routes import common
routes = Blueprint("inventory-opsdb-query-routes", __name__)
interfaces_key = "interface_services"
equipment_locations_key = "equipment_locations"
service_child_to_parents_key = "child_to_parent_circuit_relations"
service_parent_to_children_key = "parent_to_children_circuit_relations"
interface_status_key = "interface_statuses"
# def _decode_utf8_dict(d):
# return {k.decode('utf8'): json.loads(v) for k, v in d.items()}
#
#
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment