augmenttoolkit / server /src /nest /share /share.module.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 5)
57a889c verified
Raw
History Blame Contribute Delete
292 Bytes
import { Module } from '@nestjs/common';
import { TripShareController, SharedController } from './share.controller';
import { ShareService } from './share.service';
@Module({
controllers: [TripShareController, SharedController],
providers: [ShareService],
})
export class ShareModule {}