from django.urls import path, include from .views import * app_name = 'api' urlpatterns = [ path('scan/library/', parse_library, name='scan_library'), path('scan/history/', parse_history_request, name='scan_history'), path('user_artists/', get_artist_data, name='get_artist_data'), path('user_genres/', get_genre_data, name='get_genre_data'), path('audio_features//', get_audio_feature_data, name='get_audio_feature_data'), path('import/history/', import_history, name='import_history'), ]