fix: import

This commit is contained in:
starnakin 2024-03-04 13:28:46 +01:00 committed by AdrienLSH
parent 8a7866aefa
commit 90ce697a3a

View File

@ -2,8 +2,8 @@ from django.urls import path, re_path
from django.conf import settings
from django.conf.urls.static import static
from .viewset import GameViewSet
from .views import GameConfigView
from .GameViewSet import GameViewSet
from .GameConfigView import GameConfigView
urlpatterns = [
path("<int:pk>", GameViewSet.as_view({"get": "retrieve"}), name="game_page"),