mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-16 15:30:20 -07:00
17 lines
251 B
TypeScript
17 lines
251 B
TypeScript
/* istanbul ignore file */
|
|
let host;
|
|
let protocol;
|
|
let port;
|
|
|
|
if (!host && !protocol && !port) {
|
|
host = 'localhost';
|
|
protocol = 'http';
|
|
port = 3131; // TODO: read port from signaling server api
|
|
}
|
|
|
|
export default {
|
|
host,
|
|
port,
|
|
protocol,
|
|
};
|