feat(pos): add config blueprint — branches, employees, theming

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-31 01:31:50 +00:00
parent 1a52ac61a0
commit 4814c813c1
2 changed files with 152 additions and 0 deletions

View File

@@ -7,6 +7,9 @@ def create_app():
from blueprints.auth_bp import auth_bp
app.register_blueprint(auth_bp)
from blueprints.config_bp import config_bp
app.register_blueprint(config_bp)
# Health check
@app.route('/pos/health')
def health():