feat: add plugin registry and server operations

This commit is contained in:
2026-08-13 17:37:18 +07:00
parent 3f09e330be
commit 71a21b7b79
39 changed files with 2201 additions and 320 deletions
+2
View File
@@ -183,6 +183,7 @@ export type CreateServerRequest = {
motd?: string | null;
level_seed?: string | null;
level_type?: string | null;
running?: boolean;
};
export type UpdateServerRequest = {
@@ -208,4 +209,5 @@ export type UpdateServerRequest = {
motd?: string | null;
level_seed?: string | null;
level_type?: string | null;
running?: boolean;
};