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