Files
gitlab-instance-0a899031_sa…/app/routers/__init__.py
2026-03-16 20:08:32 -05:00

13 lines
344 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
salon 项目路由模块
- salon: /salon/* 支付payh5、order_status、zpay_notify、xorpay_notify
- salon_meetup: /api/salon/* 报名、用户、小红书资料
"""
from .salon import router as salon_router
from .salon_meetup import router as salon_meetup_router
__all__ = [
"salon_router",
"salon_meetup_router",
]