UNPKG

envilder

Version:

A CLI that securely centralizes your environment variables from AWS SSM as a single source of truth

11 lines 315 B
export class PushSingleCommand { constructor(key, value, ssmPath) { this.key = key; this.value = value; this.ssmPath = ssmPath; } static create(key, value, ssmPath) { return new PushSingleCommand(key, value, ssmPath); } } //# sourceMappingURL=PushSingleCommand.js.map