5 lines
118 B
Python
5 lines
118 B
Python
# chat/views.py
|
|
from django.shortcuts import render
|
|
|
|
def index(request):
|
|
return render(request, "chat/index.html") |