mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
11 lines
148 B
JavaScript
Executable File
11 lines
148 B
JavaScript
Executable File
"use strict";
|
|
|
|
// Global API state
|
|
const state = {
|
|
apiConfig: null
|
|
, receiverList: []
|
|
, sessionList: []
|
|
};
|
|
|
|
export default state;
|