Spaces:
Sleeping
Sleeping
File size: 308 Bytes
bf53f45 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from django.urls import path
from . import views
from .views import AgeEstimation
# from bpm_app.views import calculate_heart_rate
# urlpatterns = [
# path('calculate-bpm/', , name='calculate_bpm'),
# ]
urlpatterns = [
path('age_estimator/', AgeEstimation.as_view(), name='age_estimation_view'),
]
|