fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-06 13:02:11 +01:00
parent cea82c1ed3
commit c6e6f2eb66
2 changed files with 1 additions and 6 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/interfaces', name: '@serve.zone/interfaces',
version: '1.0.22', version: '1.0.23',
description: 'interfaces for working with containers' description: 'interfaces for working with containers'
} }

View File

@ -36,11 +36,6 @@ export interface ICluster {
serverAddress: string; serverAddress: string;
serverSecret: string; serverSecret: string;
}; };
/**
* Where to get the images from
*/
registryInfo: IDockerRegistryInfo;
}; };
} }