1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-kodi.git synced 2025-01-18 14:06:10 +00:00
jellyfin-kodi/resources/lib/objects/kodi/queries_texture.py
2018-09-06 03:36:32 -05:00

11 lines
202 B
Python

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