mirror of
https://github.com/nicolabs/musiccast-repairkit.git
synced 2026-05-21 03:10:03 +02:00
13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
const log = require('../logging');
|
|
|
|
module.exports = class Scenario {
|
|
|
|
constructor( configuration ) {
|
|
log.debug("Debug configuration : %o",configuration);
|
|
}
|
|
|
|
onEvent( event ) {
|
|
log.debug("<<< %j",event);
|
|
}
|
|
}
|