Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mod.rs « livekit_signaller « src « webrtc « net - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8346e6cd0d653875b600e818202e3b1acc57903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: MPL-2.0

use crate::signaller::Signallable;
use gst::glib;

mod imp;

glib::wrapper! {
    pub struct LiveKitSignaller(ObjectSubclass<imp::Signaller>) @implements Signallable;
}

impl Default for LiveKitSignaller {
    fn default() -> Self {
        glib::Object::new()
    }
}