remove django admin app

This commit is contained in:
eneller
2025-03-21 20:37:26 +01:00
parent af36e86059
commit 66809ff88c
2 changed files with 0 additions and 53 deletions

View File

@@ -15,7 +15,6 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, include
from django.http import HttpRequest, HttpResponse
from django.shortcuts import render, redirect
@@ -23,6 +22,5 @@ from epub2go.convert import get_all_books, GBConvert, Book
urlpatterns = [
path("admin/", admin.site.urls),
path('',include('core.urls'))
]