Spaces:
Paused
Paused
| from django.urls import path | |
| from . import views | |
| urlpatterns = [ | |
| path('generate-styles/', views.generate_styles, name='generate-styles'), | |
| path('recommend-style/', views.recommend_style, name='recommend-style'), | |
| path('health/', views.health_check, name='health-check'), | |
| ] | |