File size: 271 Bytes
9702c04
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from django.urls import path, include
from rest_framework.routers import DefaultRouter
from .views import DoctorAppViewSet

router = DefaultRouter()
router.register(r'', DoctorAppViewSet)

urlpatterns = [
    # ... other URL patterns
    path('', include(router.urls)),
]