10 lines
183 B
Python
10 lines
183 B
Python
from django.urls import path
|
|
from .views import Doxme, home, robots
|
|
|
|
|
|
urlpatterns = [
|
|
path('home/', home),
|
|
path('robots.txt/', robots),
|
|
path('doxme/', Doxme.as_view()),
|
|
]
|