Coverage for seedboxsync/core/sync/services/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.16.1, created at 2026-09-26 17:14 +0000
« prev ^ index » next coverage.py v7.16.1, created at 2026-09-26 17:14 +0000
1#
2# Copyright (C) 2015-2026 Guillaume Kulakowski <guillaume@kulakowski.fr>
3#
4# For the full copyright and license information, please view the LICENSE
5# file that was distributed with this source code.
6#
7"""Package with all sync servces."""
9from .blackhole import LOCK_NAME as BLACKHOLE_LOCK_NAME, PRIORITY as BLACKHOLE_PRIORITY, blackhole
10from .seedbox import LOCK_NAME as SEEDBOX_LOCK_NAME, PRIORITY as SEEDBOX_PRIORITY, seedbox
12__all__ = ["BLACKHOLE_LOCK_NAME", "BLACKHOLE_PRIORITY", "SEEDBOX_LOCK_NAME", "SEEDBOX_PRIORITY", "blackhole", "seedbox"]