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