create initial models and mobile test for mojtaba eshaghi

This commit is contained in:
2025-05-05 15:25:46 +03:30
parent 7e301c14b7
commit ec58d9ef5e
167 changed files with 614 additions and 23 deletions

View File

@@ -1,3 +1,11 @@
from rest_framework.routers import DefaultRouter
from apps.core.api import MobileTestViewSet
from django.urls import path, include
router = DefaultRouter()
router.register('mobile_test', MobileTestViewSet, basename='mobile_test')
app_name = "core"
urlpatterns = []
urlpatterns = [
path('core/', include(router.urls))
]