You've already forked WhereToGoRedux
mirror of
https://github.com/Llloooggg/WhereToGoRedux.git
synced 2026-03-06 04:56:23 +03:00
12 lines
222 B
Python
12 lines
222 B
Python
from rest_framework import routers
|
|
|
|
from facilities.viewsets import FacilityViewSet
|
|
|
|
app_name = "facilities"
|
|
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register("", FacilityViewSet, "facilities")
|
|
|
|
urlpatterns = router.urls
|