mirror of
https://github.com/quantum5/qlinks.git
synced 2025-04-24 10:41:57 -04:00
7 lines
112 B
Python
7 lines
112 B
Python
from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
urlpatterns = [
|
|
path('', admin.site.urls),
|
|
]
|