1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-kodi.git synced 2025-02-16 17:15:44 +00:00
jellyfin-kodi/resources/lib/objects/kodi/queries_texture.py
2019-10-03 23:34:23 +02:00

12 lines
156 B
Python

get_cache = """
SELECT cachedurl
FROM texture
WHERE url = ?
"""
delete_cache = """
DELETE FROM texture
WHERE url = ?
"""