' ' modified: mysite/urls.py

This commit is contained in:
acidburnmonkey
2025-08-06 01:50:53 -04:00
parent 18b7f77284
commit d5e0fc56c3
+1
View File
@@ -5,6 +5,7 @@ from .views import Doxme, home, robots
urlpatterns = [
path('home/', home),
path('', home),
path('robots.txt/', robots),
path('doxme/', Doxme.as_view()),
]