17 lines
239 B
JavaScript
17 lines
239 B
JavaScript
'use strict';
|
|
|
|
const Homey = require('homey');
|
|
|
|
class MyApp extends Homey.App {
|
|
|
|
/**
|
|
* onInit is called when the app is initialized.
|
|
*/
|
|
async onInit() {
|
|
this.log('MyApp has been initialized');
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = MyApp;
|