Some checks failed
Build and Deploy Backend / build-and-deploy (push) Failing after 1m36s
15 lines
359 B
Python
15 lines
359 B
Python
"""
|
|
故事模块URL配置
|
|
"""
|
|
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from .views import StoryViewSet, ShelfViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register('shelves', ShelfViewSet, basename='shelves')
|
|
router.register('', StoryViewSet, basename='stories')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|