northwind-api-gateway / apps /northwindmcp /src /northwindmcp.module.ts
mishrabp's picture
Upload folder using huggingface_hub
97dab2a verified
import { Module } from '@nestjs/common';
import { McpService } from './mcp/mcp.service';
@Module({
providers: [McpService],
})
export class AppModule {}