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
/
device.js
20 lines
(14 loc)
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict'
;
const
config =
require
(
'config'
);
const
request =
require
(
'request'
);
let
self;
class
Device
{
constructor
(
data
){ self =
this
;
this
.
data
= data;
console
.
log
(
'DEVICE'
, data); }
getDisplay
(
){ } }
module
.
exports
=
Device
;