mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
13 lines
245 B
Python
13 lines
245 B
Python
|
|
from django.urls import path, include
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.clients, name='clients'),
|
|
path('createClient', views.createClient, name='createClient'),
|
|
path('payDebt', views.payDebt, name='payDebt'),
|
|
|
|
|
|
|
|
]
|