mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-02-22 09:12:25 +00:00
9 lines
284 B
Python
9 lines
284 B
Python
|
# billing/urls.py
|
||
|
from django.urls import path
|
||
|
from .views import CreatePaymentView, VerifyPaymentView
|
||
|
|
||
|
urlpatterns = [
|
||
|
path("create-payment/", CreatePaymentView.as_view(), name="create-payment"),
|
||
|
path("verify-payment/", VerifyPaymentView.as_view(), name="verify-payment"),
|
||
|
]
|