Files
ProjectManage/src/core/run/Init.run.ts
2024-09-27 01:11:40 +08:00

14 lines
438 B
TypeScript
Executable File

import { StartWindow } from "@annotation/Run.annotation";
import { CreateApplicationIpc } from "@annotation/Creted.annotation";
import { Application } from "@ipc/Application.ipc";
import { BaseControllerTypes } from "@type/BaseController.types";
@StartWindow()
@CreateApplicationIpc([ Application ])
export class Run implements BaseControllerTypes {
event(): void {}
ipc(): void {}
monitor(): void {}
ui(): void {}
}