9 lines
256 B
Python
9 lines
256 B
Python
from django.urls import include, path
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from .views import SettingsView
|
|
|
|
router = DefaultRouter()
|
|
router.register("settings", SettingsView, basename="settings")
|
|
urlpatterns = [path("", include(router.urls))]
|