mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-15 04:02:10 +08:00
18 lines
237 B
JavaScript
18 lines
237 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* user
|
|
* @class
|
|
*/
|
|
class UserController {
|
|
|
|
/**
|
|
* test
|
|
*/
|
|
async test () {
|
|
return 'hello electron-egg';
|
|
}
|
|
}
|
|
|
|
UserController.toString = () => '[class UserController]';
|
|
module.exports = UserController;
|