mirror of https://github.com/portainer/portainer
12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
/**
|
|||
* Generic params
|
|||
*/
|
|||
const _KubernetesCommonParams = Object.freeze({
|
|||
id: '',
|
|||
});
|
|||
export class KubernetesCommonParams {
|
|||
constructor() {
|
|||
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesCommonParams)));
|
|||
}
|
|||
}
|