5 lines
121 B
Python
5 lines
121 B
Python
from django.shortcuts import render
|
|
|
|
def voice_agent_view(request):
|
|
return render(request, 'voice_agent/index.html')
|