mirror of
https://github.com/niezhicheng/pveui.git
synced 2026-06-02 04:29:25 +08:00
13 lines
249 B
Python
13 lines
249 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from .views import ExampleViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'examples', ExampleViewSet)
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|
|
|
|
|