10 lines
		
	
	
		
			307 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			307 B
		
	
	
	
		
			Python
		
	
	
	
| from django.urls import path, include
 | |
| from rest_framework import routers
 | |
| from .views import CMAViewSet, CNASViewSet
 | |
| 
 | |
| router = routers.DefaultRouter()
 | |
| router.register('cma', CMAViewSet, basename="cma")
 | |
| router.register('cnas', CNASViewSet, basename="cnas")
 | |
| urlpatterns = [
 | |
|     path('', include(router.urls))
 | |
| ] |