grammo / api /urls.py
kaeizen's picture
backend init
29cfad5
raw
history blame contribute delete
187 Bytes
from django.urls import path
from .views import hello, chat, end
urlpatterns = [
path('hello/', hello),
# path('start/', start),
path('chat/', chat),
path('end/', end)
]