openfm-qt/openfm_qt/__init__.py
2023-07-11 16:06:05 +02:00

10 lines
275 B
Python

# coding=utf-8
API_URL = "https://open.fm/radio/api/v2/ofm/stations_slug.json"
DEFAULT_VOLUME = 70
from .ui_main_window import Ui_MainWindow # nopep8: E402 isort: skip
from .mainwindow import MainWindow # nopep8: E402 isort: skip
__all__ = [Ui_MainWindow, MainWindow]