8 lines
148 B
Python
8 lines
148 B
Python
from django.urls import path
|
|
|
|
from ..views.admin import AIAnalysisAdminAPI
|
|
|
|
urlpatterns = [
|
|
path("ai/reports", AIAnalysisAdminAPI.as_view()),
|
|
]
|