7 lines
164 B
Python
7 lines
164 B
Python
from django.urls import path
|
|
from .views import home, ai_chat
|
|
|
|
urlpatterns = [
|
|
path("", home, name="home"),
|
|
path("api/ai-chat/", ai_chat, name="ai_chat"),
|
|
] |