Move the testapp path to root

This commit is contained in:
Lucas Schumacher 2024-05-19 18:07:45 -04:00
parent 809e93ddd9
commit 23978aa9dc

View File

@ -19,7 +19,7 @@ from django.urls import include, path
urlpatterns = [
# Add the path that our testapp should be served at
path("test/", include("testapp.urls")),
path("", include("testapp.urls")),
path('admin/', admin.site.urls),
]