11 lines
236 B
Python
11 lines
236 B
Python
from django.urls import include, path
|
|
from rest_framework import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register(r'ai_api_key', views.AIApiKeyViewSet)
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
|
|
] |