UNPKG

envilder

Version:

A CLI and GitHub Action that securely centralizes your environment variables from AWS SSM or Azure Key Vault as a single source of truth

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