12 lines
215 B
Python
12 lines
215 B
Python
from django.urls import path
|
|
|
|
from core.views import index, sentry_debug
|
|
|
|
|
|
app_name = "index"
|
|
|
|
urlpatterns = [
|
|
path("", index, name="main_index"),
|
|
path("sentry-debug/", sentry_debug, name="sentry_debug"),
|
|
]
|