8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-17 16:17:44 +00:00
re2o/cotisations/payment_methods/__init__.py

10 lines
224 B
Python
Raw Normal View History

from django.conf.urls import include, url
from . import comnpay, cheque
urlpatterns = [
url(r'^comnpay/', include(comnpay.urls, namespace='comnpay')),
url(r'^cheque/', include(cheque.urls, namespace='cheque')),
]