1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/pdf/urls.py

7 lines
111 B
Python

from django.urls import path
from pdf import views
urlpatterns=[
path("", views.pdf, name="document"),
]