Modified Title & Tab, updated url for Github, updated url paths for project and started template for views within api application

This commit is contained in:
Michael Roy
2024-05-18 22:04:38 -04:00
parent a333aa8fa4
commit 54e0d6a24c
16 changed files with 24 additions and 26 deletions

View File

@@ -0,0 +1,10 @@
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'),
]