UNPKG

nestjs-appwrite

Version:

Easier Appwrite integration for your NestJS application.

11 lines (10 loc) 412 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EnvVarsStoreService = void 0; const secret_store_service_1 = require("./secret-store.service"); class EnvVarsStoreService extends secret_store_service_1.SecretStoreService { async getSecretString(secretName) { return process.env[secretName.toUpperCase()]; } } exports.EnvVarsStoreService = EnvVarsStoreService;