mirror of
https://github.com/alexgetmancom/miband-bot.git
synced 2026-07-16 21:54:31 +03:00
10 lines
231 B
Python
10 lines
231 B
Python
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# Copyright (C) 2026 Alexey
|
|
|
|
"""Mi Band tracker service package."""
|
|
|
|
from .config import Settings
|
|
from .sync import SyncResult, run_sync
|
|
|
|
__all__ = ["Settings", "SyncResult", "run_sync"]
|