mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 12:19:24 +08:00
7 lines
133 B
Python
7 lines
133 B
Python
from django.urls import path
|
|
from billing import views
|
|
|
|
urlpatterns = [
|
|
path('',
|
|
views.BillingHistoryView.as_view()),
|
|
]
|