mirror of
https://github.com/its-michaelroy/Deep-Impact.git
synced 2026-06-04 02:20:41 +00:00
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:
10
backend/deep_impact_proj/api_app/urls.py
Normal file
10
backend/deep_impact_proj/api_app/urls.py
Normal 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'),
|
||||
]
|
||||
Reference in New Issue
Block a user