// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//// SPDX-License-Identifier: EUPL-1.2
useserde::Deserialize;/// LiveKit settings.
#[derive(Debug, Clone, Deserialize, PartialEq, Eq)]pubstructLiveKitSettings{/// The API key for connecting to LiveKit.
pubapi_key: String,
/// The API secret for connecting to LiveKit.
pubapi_secret: String,
/// The public url that OpenTalk clients will use for connecting to LiveKit.
pubpublic_url: String,
/// The url that the OpenTalk controller will use for connecting to LiveKit.
pubservice_url: String,
}