Files
Deep-Impact/backend/deep_impact_proj/api_app/urls.py
2024-05-19 05:05:55 +00:00

10 lines
192 B
Python

from django.urls import path
from .views import Sentry, OpenAI
urlpatterns = [
path('sentry/', Sentry.as_view(), name='sentry'),
path('openai/', OpenAI.as_view(), name='openai'),
]