pos_urls.py 186 Bytes
from django.urls import path
from pos import views

urlpatterns = [
    path(r'nsc/invoice', views.NSCInvoiceView.as_view()),
    path(r'de-mortgage', views.DeMortgageView.as_view()),
]