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