fix(image registry): start work on image registry

This commit is contained in:
2024-06-01 05:48:57 +02:00
parent 482a6a101c
commit 338ed5ed75
22 changed files with 703 additions and 903 deletions

View File

@ -91,7 +91,7 @@ export class CloudlyClient {
'getClusterConfig'
);
const response = await clusterConfigRequest.fire({
jwt: '', // TODO: do proper auth here
jwt: '',
clusterIdentifier: identityArg,
});
return response.configData;

View File

@ -1,5 +1,7 @@
import * as plugins from './plugins.js';
export class Image {
public getImages() {}
public getImages() {
}
}

View File

@ -0,0 +1,7 @@
import * as plugins from './plugins.js';
export class Server {
public static getServers() {
}
}