use cloud mix images

This commit is contained in:
cwilvx
2024-10-29 22:40:30 +03:00
parent fe09a8a8ae
commit f6f66c571c
5 changed files with 91 additions and 5 deletions
+20
View File
@@ -103,6 +103,26 @@ class Paths:
def get_config_file_path(cls):
return join(cls.get_app_dir(), "settings.json")
@classmethod
def get_mixes_img_path(cls):
return join(cls.get_img_path(), "mixes")
@classmethod
def get_artist_mixes_img_path(cls):
return join(cls.get_mixes_img_path(), "artists")
@classmethod
def get_og_mixes_img_path(cls):
return join(cls.get_mixes_img_path(), "original")
@classmethod
def get_md_mixes_img_path(cls):
return join(cls.get_mixes_img_path(), "medium")
@classmethod
def get_sm_mixes_img_path(cls):
return join(cls.get_mixes_img_path(), "small")
# defaults
class Defaults: