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