8 lines
142 B
Python
8 lines
142 B
Python
"""
|
|
app/tenant/pos/routes.py
|
|
Phase 3+ implementation.
|
|
"""
|
|
from flask import Blueprint
|
|
|
|
pos_bp = Blueprint("pos", __name__, url_prefix="/pos")
|