2023-04-14 15:33:43 +02:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
2023-04-14 15:42:49 +02:00
|
|
|
path("transactions", views.TransactionListView.as_view(), name="transactions"),
|
|
|
|
path("categories", views.CategoryListView.as_view(), name="categories"),
|
|
|
|
path("accounts", views.AccountListView.as_view(), name="accounts"),
|
|
|
|
path("snapshots", views.SnapshotListView.as_view(), name="snapshots"),
|
2023-04-14 15:33:43 +02:00
|
|
|
]
|