feat(pos): scaffold project structure and Flask app

This commit is contained in:
2026-03-31 01:21:52 +00:00
parent 1b9b12d08e
commit ba6568085e
5 changed files with 40 additions and 0 deletions

14
pos/app.py Normal file
View File

@@ -0,0 +1,14 @@
from flask import Flask
def create_app():
app = Flask(__name__)
@app.route('/pos/health')
def health():
return {'status': 'ok'}
return app
if __name__ == '__main__':
app = create_app()
app.run(host='0.0.0.0', port=5001, debug=True)