7 lines
177 B
Python
7 lines
177 B
Python
|
from django.urls import path, include
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('gateways/paypal/', include("payment.paypal.urls")),
|
||
|
path('gateways/sepa/', include("payment.sepa.urls")),
|
||
|
]
|