You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
415 B
13 lines
415 B
from django.urls import path, include
|
|
from django.conf.urls import url
|
|
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
path('', index, name='index'),
|
|
path('login', login, name='login'),
|
|
path('callback', callback, name='callback'),
|
|
path('user_data', user_data, name='user_data'),
|
|
path('test_db', test_db, name='test_db'),
|
|
path('user_artists/<str:user_id>', get_artist_data, name='get_artist_data'),
|
|
]
|