opentalk_roomserver_types_livekit/
lib.rs1mod command;
8mod credentials;
9mod error;
10mod event;
11mod internal;
12mod microphone_restriction_state;
13mod settings;
14mod state;
15
16use opentalk_types_common::modules::{ModuleId, module_id};
17
18pub use crate::{
19 command::LiveKitCommand,
20 credentials::Credentials,
21 error::LiveKitError,
22 event::LiveKitEvent,
23 internal::{
24 LiveKitInternal, MicrophoneRestrictionError, MicrophoneRestrictionErrorKind,
25 ParticipantsMuted,
26 },
27 microphone_restriction_state::MicrophoneRestrictionState,
28 settings::LiveKitSettings,
29 state::LiveKitState,
30};
31
32pub const LIVEKIT_MODULE_ID: ModuleId = module_id!("livekit");