2023-08-11 12:45:59 +00:00

17 lines
447 B
JavaScript

export const JOIN_CALL = "JOIN_CALL";
export const EXCHANGE = "EXCHANGE";
export const LEAVE_CALL = "LEAVE_CALL";
export const ice = { iceServers: [
{
urls: "stun:stun2.l.google.com:19302"
}
]};
export const broadcastData = data => {
fetch("calls", {
method: "POST",
body: JSON.stringify(data),
headers: {"content-type": "application/json"}
}
);
};