northwind-api-gateway / libs /common /src /azure-token /azure-token.module.ts
mishrabp's picture
Upload folder using huggingface_hub
97dab2a verified
import { Module } from '@nestjs/common';
import { AzureTokenService } from './azure-token.service';
@Module({
providers: [AzureTokenService]
})
export class AzureTokenModule {}