This commit is contained in:
2025-11-26 12:16:50 +00:00
parent e6f7d70d51
commit c46ceccb6c
13 changed files with 1970 additions and 473 deletions

View File

@@ -289,6 +289,16 @@ export class RegistryManager {
return token;
}
/**
* Get the registry status
*/
getStatus(): { running: boolean; port: number } {
return {
running: this.isInitialized,
port: this.options.port || 4000,
};
}
/**
* Get the registry base URL
*/