14 lines
366 B
Python
14 lines
366 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from . import views
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'medical-bills', views.MedicalBillViewSet)
|
|
router.register(r'payments', views.PaymentViewSet)
|
|
router.register(r'insurance-claims', views.InsuranceClaimViewSet)
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|
|
|