mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
12 lines
156 B
Python
12 lines
156 B
Python
|
|
get_cache = """
|
|
SELECT cachedurl
|
|
FROM texture
|
|
WHERE url = ?
|
|
"""
|
|
|
|
|
|
delete_cache = """
|
|
DELETE FROM texture
|
|
WHERE url = ?
|
|
"""
|