Wire lobby routes into main URL config

This commit is contained in:
2026-02-27 12:22:58 +01:00
parent ddad1bc914
commit f26f1e2a5b

View File

@@ -1,6 +1,6 @@
from django.contrib import admin
from django.http import JsonResponse
from django.urls import path
from django.urls import path, include
def health(_request):
@@ -8,6 +8,7 @@ def health(_request):
urlpatterns = [
path('api/lobby/', include('lobby.urls')) ,
path('admin/', admin.site.urls),
path('healthz', health, name='healthz'),
]