mirror of
https://github.com/Llloooggg/WhereToGo.git
synced 2026-03-06 04:36:22 +03:00
9 lines
187 B
Python
9 lines
187 B
Python
from rest_framework import routers
|
|
|
|
from maps.viewsets import FacilityViewSet
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register(r"facilities", FacilityViewSet)
|
|
|
|
urlpatterns = router.urls
|