Files
electron-egg/electronjs/controller/example.js
2025-01-07 19:08:48 +08:00

18 lines
252 B
JavaScript

'use strict';
/**
* example
* @class
*/
class ExampleController {
/**
* test
*/
async test () {
return 'hello electron-egg';
}
}
ExampleController.toString = () => '[class ExampleController]';
module.exports = ExampleController;