UNPKG

envilder

Version:

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

10 lines 312 B
export class PullSsmToEnvCommand { constructor(mapPath, envFilePath) { this.mapPath = mapPath; this.envFilePath = envFilePath; } static create(mapPath, envFilePath) { return new PullSsmToEnvCommand(mapPath, envFilePath); } } //# sourceMappingURL=PullSsmToEnvCommand.js.map