initial commit done , pre peoduction

This commit is contained in:
acidburnmonkey
2025-08-06 01:03:53 -04:00
commit aa8ae37799
18 changed files with 607 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from django.urls import path
from .views import Doxme, home, robots
urlpatterns = [
path('home/', home),
path('robots.txt/', robots),
path('doxme/', Doxme.as_view()),
]