cqrs/services/order/main.py [27:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
app = Flask(__name__)
ds_client = datastore.Client()


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


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



services/customer-async/main.py [26:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
app = Flask(__name__)
ds_client = datastore.Client()


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


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



