Commit e4eb4221 authored by Guillermo Sanz López's avatar Guillermo Sanz López
Browse files

add comments

parent b0e9e42c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3,8 +3,9 @@
from flask import Blueprint, jsonify
from ..core.operations import Operations

# create blueprint backoffice_routes
backoffice_routes = Blueprint("backoffice_routes", __name__)
operations = Operations()
operations = Operations()   # create operations object -> operations.py


@backoffice_routes.route("/invokers", methods=["GET"])