mirror of
https://github.com/alexgetmancom/miband-bot.git
synced 2026-07-17 19:20:13 +03:00
15 lines
304 B
Python
15 lines
304 B
Python
#!/usr/bin/env python3
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# Copyright (C) 2026 Alexey
|
|
|
|
from __future__ import annotations
|
|
|
|
from miband_tracker.stdio import configure_utf8_stdio
|
|
|
|
configure_utf8_stdio()
|
|
|
|
from miband_tracker.bot.app import main # noqa: E402
|
|
|
|
if __name__ == "__main__":
|
|
main()
|