summaryrefslogtreecommitdiff
path: root/tests/file_storage/urls.py
blob: cf13ab960155592e653b9af7f7f0529ca891a2d3 (plain)
1
2
3
4
5
6
from django.http import HttpResponse
from django.urls import path

urlpatterns = [
    path("", lambda req: HttpResponse("example view")),
]