mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-12-23 19:43:19 +00:00
13 lines
413 B
TypeScript
13 lines
413 B
TypeScript
|
import check from "./funcs/check";
|
||
|
import isDev from "./funcs/isDev";
|
||
|
import listStations from "./funcs/listStations";
|
||
|
import loadState from "./funcs/loadState";
|
||
|
import logger from "./funcs/logger";
|
||
|
import msToTime from "./funcs/msToTime";
|
||
|
import play from "./funcs/play";
|
||
|
import saveState from "./funcs/saveState";
|
||
|
|
||
|
export default {
|
||
|
check, isDev, listStations, loadState, logger, msToTime, play, saveState
|
||
|
}
|