10 lines
249 B
Python
10 lines
249 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
|
|
from .mainwindow import MainWindow # nopep8: E402
|
|
|
|
__all__ = [Ui_MainWindow, MainWindow]
|