9 lines
368 B
Python
9 lines
368 B
Python
from django.urls import path, include
|
|
|
|
# apps/cms 是 CMS 薄壳:聚合各领域 app 的 /api/cms/ 路由 + 未来的跨领域看板。
|
|
# 机构管理已迁至 organization 域(apps/organization),在此聚合。
|
|
urlpatterns = [
|
|
path('', include('apps.organization.urls')), # 机构、科室
|
|
path('', include('apps.user.cms_urls')), # 用户
|
|
]
|