fix: import

This commit is contained in:
starnakin 2024-03-04 13:28:46 +01:00
parent f3bbad9eb9
commit 7a034c2b48

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"),