Files
electron-egg/electron/controller/example.js
2024-12-19 17:27:52 +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;