Files
electron-egg/electron/controller/cross.js
2024-12-19 17:27:52 +08:00

47 lines
603 B
JavaScript

'use strict';
/**
* Cross
* @class
*/
class CrossController {
/**
* View process service information
*/
info() {
}
/**
* Get service url
*/
async getUrl(args) {
}
/**
* kill service
* By default (modifiable), killing the process will exit the electron application.
*/
async killServer(args) {
}
/**
* create service
*/
async createServer(args) {
}
/**
* Access the api for the cross service
*/
async requestApi(args) {
}
}
CrossController.toString = () => '[class CrossController]';
module.exports = CrossController;