5 lines
96 B
Python
5 lines
96 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
def chat(request):
|
||
|
return render(request, 'chat.html')
|