9 lines
166 B
Python
9 lines
166 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = "haikalbot"
|
|
|
|
urlpatterns = [
|
|
path("analyze/", views.ModelAnalystView.as_view(), name="haikalbot"),
|
|
]
|