8 lines
148 B
Python
8 lines
148 B
Python
"""
|
|
app/admin/plans/routes.py
|
|
Phase 2 implementation.
|
|
"""
|
|
from flask import Blueprint
|
|
|
|
plans_bp = Blueprint("plans", __name__, url_prefix="/plans")
|