1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-20 16:53:44 +02:00
RPGnotes/pdf/urls.py

8 lines
111 B
Python
Raw Normal View History

2023-05-28 16:22:12 +02:00
from django.urls import path
from pdf import views
urlpatterns=[
path("", views.pdf, name="document"),
]