src/notes/urls.py
author ymh <ymh.work@gmail.com>
Tue, 20 Jun 2017 19:04:42 +0200
changeset 65 14989b339e5d
parent 36 36210c4f019f
permissions -rw-r--r--
Use a fonctionnal component for the login part of the navbar

from django.conf.urls import url, include

from .api import urls as api_urls

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