add apps and drf_yasg

This commit is contained in:
behruz-dev
2025-07-30 16:14:47 +05:00
parent 180fa70758
commit da201800b4
29 changed files with 102 additions and 20 deletions

View File

View File

View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class AccountsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'core.apps.accounts'

View File

View File

View File

View File

View File

View File

@@ -0,0 +1,6 @@
from django.urls import path, include
urlpatterns = [
]

View File

View File

View File

6
core/apps/shared/apps.py Normal file
View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class SharedConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'core.apps.shared'

View File

View File

View File

View File

View File

View File

5
core/apps/shared/urls.py Normal file
View File

@@ -0,0 +1,5 @@
from django.urls import path, include
urlpatterns = [
]

View File