first commit
This commit is contained in:
0
core/apps/payments/__init__.py
Normal file
0
core/apps/payments/__init__.py
Normal file
0
core/apps/payments/admin/__init__.py
Normal file
0
core/apps/payments/admin/__init__.py
Normal file
6
core/apps/payments/apps.py
Normal file
6
core/apps/payments/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ModuleConfig(AppConfig):
|
||||
default_auto_field = "django.db.models.BigAutoField"
|
||||
name = "core.apps.payments"
|
||||
0
core/apps/payments/migrations/__init__.py
Normal file
0
core/apps/payments/migrations/__init__.py
Normal file
0
core/apps/payments/models/__init__.py
Normal file
0
core/apps/payments/models/__init__.py
Normal file
0
core/apps/payments/serializers/__init__.py
Normal file
0
core/apps/payments/serializers/__init__.py
Normal file
0
core/apps/payments/tests/__init__.py
Normal file
0
core/apps/payments/tests/__init__.py
Normal file
9
core/apps/payments/urls.py
Normal file
9
core/apps/payments/urls.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.urls import path, include
|
||||
from rest_framework.routers import DefaultRouter
|
||||
|
||||
router = DefaultRouter()
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path("", include(router.urls)),
|
||||
]
|
||||
0
core/apps/payments/views/__init__.py
Normal file
0
core/apps/payments/views/__init__.py
Normal file
Reference in New Issue
Block a user