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