mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
10 lines
124 B
Python
10 lines
124 B
Python
from django.urls import path
|
|
|
|
|
|
def admin_view(request):
|
|
return None
|
|
|
|
|
|
urlpatterns = [
|
|
path("admin/", admin_view),
|
|
]
|