Add customer API stub

This commit is contained in:
2025-12-28 11:24:11 +01:00
parent 19ad13843c
commit ffffa1254e
13 changed files with 137 additions and 1 deletions

12
api-customer/app.py Normal file
View File

@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run()