add finance app
This commit is contained in:
12
core/apps/finance/urls.py
Normal file
12
core/apps/finance/urls.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from django.urls import path, include
|
||||
|
||||
from core.apps.finance.views import cash_transaction as cash_views
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path('cash_transaction/', include(
|
||||
[
|
||||
path('list/', cash_views.CashTransactionListApiView.as_view()),
|
||||
]
|
||||
))
|
||||
]
|
||||
Reference in New Issue
Block a user