Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
367 Bytes
import { HttpModule } from "@nestjs/axios";
import { Module } from "@nestjs/common";
import { ContributorsController } from "./contributors.controller";
import { ContributorsService } from "./contributors.service";
@Module({
imports: [HttpModule],
controllers: [ContributorsController],
providers: [ContributorsService],
})
export class ContributorsModule {}