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

8 lines
128 B
Python
Raw Normal View History

2022-07-30 16:24:28 +02:00
from django.urls import path
from graph import views
urlpatterns = [
path("", views.GraphView.as_view(), name="graph"),
]