12 lines
273 B
Python
12 lines
273 B
Python
from django.urls import include, path
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from apps.bookings.views import BookingViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r"", BookingViewSet, basename="booking")
|
|
|
|
urlpatterns = [
|
|
path("", include(router.urls)),
|
|
]
|