File size: 187 Bytes
29cfad5
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from django.urls import path
from .views import hello, chat, end

urlpatterns = [
    path('hello/', hello),
    # path('start/', start),
    path('chat/', chat),
    path('end/', end)
]