1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/common/urls.py

8 lines
215 B
Python

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