Files
electron-egg/electron/controller/example.js
gaoshuaixing 7a1ac30fa6 demo: js code
2025-01-09 19:06:07 +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;