mirror of
https://github.com/HabiRabbu/Musicseerr
synced 2026-04-21 13:37:27 +00:00
31 lines
851 B
Python
31 lines
851 B
Python
from infrastructure.msgspec_fastapi import AppStruct
|
|
|
|
|
|
class CacheStats(AppStruct):
|
|
memory_entries: int
|
|
memory_size_bytes: int
|
|
memory_size_mb: float
|
|
disk_metadata_count: int
|
|
disk_metadata_albums: int
|
|
disk_metadata_artists: int
|
|
disk_cover_count: int
|
|
disk_cover_size_bytes: int
|
|
disk_cover_size_mb: float
|
|
library_db_artist_count: int
|
|
library_db_album_count: int
|
|
library_db_size_bytes: int
|
|
library_db_size_mb: float
|
|
total_size_bytes: int
|
|
total_size_mb: float
|
|
library_db_last_sync: int | None = None
|
|
disk_audiodb_artist_count: int = 0
|
|
disk_audiodb_album_count: int = 0
|
|
|
|
|
|
class CacheClearResponse(AppStruct):
|
|
success: bool
|
|
message: str
|
|
cleared_memory_entries: int = 0
|
|
cleared_disk_files: int = 0
|
|
cleared_library_artists: int = 0
|
|
cleared_library_albums: int = 0
|