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