first commit

This commit is contained in:
Tomas Dvorak
2026-04-13 17:46:58 +02:00
commit 6e8fedf534
234 changed files with 53808 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
"""
This module contains functions for the server
"""
# @background
# def run_periodic_scans():
# """
# Runs periodic scans.
# Periodic scans are checks that run every few minutes
# in the background to do stuff like:
# - checking for new music
# - delete deleted entries
# - downloading artist images, and other data.
# """
# # ValidateAlbumThumbs()
# # ValidatePlaylistThumbs()
# while UserConfig().enablePeriodicScans:
# try:
# except PopulateCancelledError:
# log.error("'run_periodic_scans': Periodic scan cancelled.")
# pass
# time.sleep(UserConfig().scanInterval)