14 lines
314 B
Python
14 lines
314 B
Python
"""
|
|
智能体模块URL配置 - 仅App端接口
|
|
"""
|
|
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from .views import SpiritViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register('spirits', SpiritViewSet, basename='spirits')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|