mirror of
https://github.com/its-michaelroy/Deep-Impact.git
synced 2026-06-04 10:20:41 +00:00
11 lines
203 B
Python
11 lines
203 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'),
|
|
]
|