django-musician/musician/urls.py

15 lines
293 B
Python
Raw Normal View History

2019-10-10 07:35:15 +00:00
"""
URL routes definition.
Describe the paths where the views are accesible.
"""
from django.urls import path
app_name = 'musician'
urlpatterns = [
# path('auth/login/', views.LoginView.as_view(), name='login'),
# path('auth/logout/', views.LogoutView.as_view(), name='logout'),
]