Add chat App

This commit is contained in:
2025-03-15 12:15:45 +01:00
parent 35617470c4
commit ab6e27f80e
8 changed files with 56 additions and 2 deletions

8
core/chat/urls.py Normal file
View File

@@ -0,0 +1,8 @@
# chat/urls.py
from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
]