Add search variants

This commit is contained in:
hhh
2023-12-25 14:48:45 +02:00
parent 14303023aa
commit 9b47a74523
3 changed files with 20 additions and 2 deletions

View File

@@ -40,6 +40,16 @@ settings_strings: dict[str, Setting] = {
'yes': 'Only exact matches',
'no': 'Fuzzy matches also'
},
),
'default_search_provider': Setting(
name='Default search provider',
description='Which service to use when searching without service filter',
choices={
'd': 'Deezer',
'c': 'SoundCloud',
'y': 'YouTube',
's': 'Spotify'
}
)
}