UNPKG

nestjs-appwrite

Version:

Easier Appwrite integration for your NestJS application.

9 lines (6 loc) 263 B
import { SecretStoreService } from './secret-store.service'; export class EnvVarsStoreService extends SecretStoreService { public async getSecretString(secretName: string): Promise<string | undefined> { return process.env[secretName.toUpperCase()]; } }