Klaus-Uwe Mitterer
54e84be36a
Copy over payment system from kumi.xxx Add missing requirements Other stuff
6 lines
177 B
Python
6 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")),
|
|
]
|