Umbenennen des Projektordners

This commit is contained in:
juhnsa
2025-03-15 21:21:53 +01:00
parent 35617470c4
commit defbc5b95d
87 changed files with 0 additions and 0 deletions

9
django/play/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.urls import path
from . import views
app_name = 'play'
urlpatterns = [
path('lobby', views.lobby, name='lobby'),
path('join', views.join_game, name='join_game'),
]