Files
september 54a81cbdcf init
2025-09-03 06:51:24 -07:00

11 lines
244 B
Python

# core/urls.py - Core application URL patterns
from django.urls import path
from . import views
app_name = 'core'
urlpatterns = [
path('health/', views.health_check, name='health'),
path('csrf/', views.get_csrf_token, name='csrf'),
]