mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
10 lines
224 B
Python
10 lines
224 B
Python
|
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')),
|
||
|
]
|