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
175 B
Python

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