Cleaned up proj directory by removing extra proj dir, updated defenses, effects, and main page with new formatting for better appearance

This commit is contained in:
Michael Roy
2024-05-19 02:33:30 -04:00
parent b422b98123
commit 844ed6736c
34 changed files with 135 additions and 115 deletions

9
backend/api_app/urls.py Normal file
View File

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