mirror of
https://github.com/AudebertAdrien/ft_transcendence.git
synced 2025-12-17 22:47:49 +01:00
12 lines
368 B
Python
12 lines
368 B
Python
# /pong/game/urls.py
|
|
|
|
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='index'),
|
|
path('check_user_exists/', views.check_user_exists, name='check_user_exists'),
|
|
path('register_user/', views.register_user, name='register_user'),
|
|
path('authenticate_user/', views.authenticate_user, name='authenticate_user'),
|
|
]
|