X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/fd1a9915dd65789cccf27041a1f01cd4077273fc..165161a173154072eb7b999386a13562e110bd0a:/src/chunks/urls.py?ds=inline diff --git a/src/chunks/urls.py b/src/chunks/urls.py new file mode 100644 index 000000000..a1abc7df2 --- /dev/null +++ b/src/chunks/urls.py @@ -0,0 +1,9 @@ +# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.urls import path +from . import views + +urlpatterns = [ + path('attachment/.', views.attachment, name='chunks_attachment'), +]