Major Restructure

- Each task is now its own class
- Added a database to track backed up events and their destinations
- Added task to check for and backup missed events
This commit is contained in:
Sebastian Goscik
2022-12-03 21:48:44 +00:00
parent 031d4e4862
commit 471ecb0662
14 changed files with 1054 additions and 527 deletions

View File

@@ -4,4 +4,9 @@ __author__ = """sebastian.goscik"""
__email__ = 'sebastian@goscik.com'
__version__ = '0.7.4'
from .unifi_protect_backup import UnifiProtectBackup
# from .unifi_protect_backup import UnifiProtectBackup
from .downloader import VideoDownloader
from .uploader import VideoUploader
from .event_listener import EventListener
from .purge import Purge
from .missing_event_checker import MissingEventChecker