ntgcalls 3.0.0-beta10

A Library for creating group calls and P2P calls with WebRTC and MTProto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod enums;
mod error;
mod instance;
mod log;
mod structs;
mod util;

pub use enums::*;
pub use error::{Error, Result};
pub use instance::NTgCalls;
pub use log::init_logging;
pub use structs::*;

use ntgcalls_sys as sys;

pub fn version() -> String {
    util::cstr(unsafe { sys::ntg_get_version() })
}