12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
'use strict'
|
|
|
|
const {RECEIVE_WAKEWORDS} = require('./action_constants')
|
|
|
|
module.exports = {
|
|
receivedWakewords: wakewords => {
|
|
return {
|
|
type: RECEIVE_WAKEWORDS,
|
|
wakewords,
|
|
}
|
|
}
|
|
} |