File size: 322 Bytes
852ac26 |
1 2 3 4 5 6 7 8 9 10 11 12 |
"""project_settings URL Configuration
"""
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('', include('ml_app.urls')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|