| from django.urls import path | |
| from .views import UserDataPostView, GetFieldView, ContactList1, CategorizeExpenseView | |
| urlpatterns = [ | |
| path("post/", UserDataPostView.as_view(), name="post_user_data"), | |
| path( | |
| "<str:field>/<str:identifier>/", GetFieldView.as_view(), name="get_field_data" | |
| ), | |
| path("contact/", ContactList1.as_view()), | |
| path("categorize/", CategorizeExpenseView.as_view(), name="categorize_expense"), | |
| ] | |