JourneyJoker/payment/urls.py

6 lines
205 B
Python

from django.urls import path, include
urlpatterns = [
path('gateways/paypal/', include("payment.paypal.urls"), name="paypal"),
path('gateways/sepa/', include("payment.sepa.urls"), name="sepa"),
]