server state and stdio streaming

This commit is contained in:
2023-10-03 02:57:35 -06:00
parent dc4c8efeb2
commit 4a4563ba85
25 changed files with 502 additions and 80 deletions

19
types/fabric.ts Normal file
View File

@@ -0,0 +1,19 @@
export type FabricGame = {
version: string;
stable: boolean;
};
export type FabricInstaller = {
url: string;
maven: string;
version: string;
stable: boolean;
};
export type FabricLoader = {
separator: string;
build: number;
maven: string;
version: string;
stable: boolean;
};