import { Injectable } from '@nestjs/common'; @Injectable() export abstract class IConfigurationRepository { abstract get(key: string): Promise; abstract set(key: string, value: string): void; abstract del(key: string): void; }