UNPKG
@bestapps/voice-framework
Version:
latest (1.0.14)
1.0.14
Voice Framework
github.com/raks-ua/voice-framework
raks-ua/voice-framework
@bestapps/voice-framework
/
entity
/
rpc
/
session_rpc.js
13 lines
(8 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
const
Session
=
require
(
"../session"
);
class
SessionRPC
extends
Session
{
constructor
(
data
) {
super
(data); } }
module
.
exports
=
SessionRPC
;