first commit

This commit is contained in:
编码猿
2024-09-27 01:11:40 +08:00
commit 7ac6f553c6
147 changed files with 10620 additions and 0 deletions

13
src/core/run/Init.run.ts Executable file
View File

@@ -0,0 +1,13 @@
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 {}
}