src/notes/urls.py
author ymh <ymh.work@gmail.com>
Sat, 06 Jul 2019 00:59:32 +0200
changeset 203 b378ca8d67af
parent 36 36210c4f019f
permissions -rw-r--r--
Added tag 0.2.2 for changeset 2c1d48085efc

from django.conf.urls import url, include

from .api import urls as api_urls

urlpatterns = [
    url(r'^api/', include(api_urls, namespace='notes_api')),
]