openfm-qt/openfm_qt/__init__.py

10 lines
275 B
Python
Raw Permalink Normal View History

2023-07-10 17:04:47 +02:00
# coding=utf-8
2023-06-15 13:14:40 +02:00
API_URL = "https://open.fm/radio/api/v2/ofm/stations_slug.json"
DEFAULT_VOLUME = 70
2023-07-11 15:29:37 +02:00
from .ui_main_window import Ui_MainWindow # nopep8: E402 isort: skip
from .mainwindow import MainWindow # nopep8: E402 isort: skip
2023-07-10 17:04:47 +02:00
__all__ = [Ui_MainWindow, MainWindow]