mirror of
https://github.com/Llloooggg/WhereToGo.git
synced 2026-03-06 04:36:22 +03:00
11 lines
318 B
Python
11 lines
318 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
|
|
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
|
|
urlpatterns = [
|
|
path("admin/", admin.site.urls),
|
|
path("accounts/", include("allauth.urls")),
|
|
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|