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

7 lines
139 B
Python

from django.urls import path
from common import views
urlpatterns = [
path("api/draft/save", views.save_draft, name="save_draft"),
]