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