Initial commit

This commit is contained in:
2026-02-27 15:01:06 +03:00
commit fc06bb6fcd
52 changed files with 1355 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from django.urls import include, path
from rest_framework.routers import DefaultRouter
from apps.payments.views import PaymentViewSet
router = DefaultRouter()
router.register(r"", PaymentViewSet, basename="payment")
urlpatterns = [
path("", include(router.urls)),
]