mirror of
https://github.com/rjNemo/copro-api
synced 2026-06-06 10:26:44 +00:00
8 lines
221 B
Python
8 lines
221 B
Python
from django.urls import path
|
|
|
|
from .views import get_condominium_expenses, make_expenses_prediction
|
|
|
|
urlpatterns = [
|
|
path('api/v1/', get_condominium_expenses),
|
|
path('api/v1/predict/', make_expenses_prediction),
|
|
]
|