This commit is contained in:
2025-07-15 20:57:15 +03:00
parent f6c78a20a3
commit 0ffd79cee9
51 changed files with 1227 additions and 653 deletions
+7
View File
@@ -0,0 +1,7 @@
from django.urls import path
from payments.views import PaymentCreateView
urlpatterns = [
path("create/", PaymentCreateView.as_view(), name="payments_create"),
]