srayuth
Deploy Django background removal API
8836a6d
raw
history blame
285 Bytes
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'),
]