1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/graph/urls.py
2022-07-30 16:24:28 +02:00

7 lines
128 B
Python

from django.urls import path
from graph import views
urlpatterns = [
path("", views.GraphView.as_view(), name="graph"),
]