mirror of https://github.com/OpenVidu/openvidu.git
11 lines
245 B
TypeScript
11 lines
245 B
TypeScript
![]() |
import { Session } from "./Session";
|
||
|
|
||
|
export class OpenVidu {
|
||
|
|
||
|
constructor(private urlOpenViduServer: string, private secret: string){ }
|
||
|
|
||
|
public createSession(): Session {
|
||
|
return new Session(this.urlOpenViduServer, this.secret);
|
||
|
}
|
||
|
|
||
|
}
|