cqrs/services/event-publisher/main.py [25:37]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
app = Flask(__name__)
ds_client = datastore.Client()


def error500():
    resp = {
        'message': 'Internal error occured.'
    }
    return resp, 500


@app.route('/')
def index():
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cqrs/services/product/main.py [23:35]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
app = Flask(__name__)
ds_client = datastore.Client()


def error500():
    resp = {
        'message': 'Internal error occured.'
    }
    return resp, 500


@app.route('/')
def index():
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



