Spaces:
Runtime error
Runtime error
File size: 580 Bytes
405ccd5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import { Module } from '@nestjs/common';
import { ProfileController } from './profile.controller';
import { ProfileService } from './profile.service';
import { UserCoreModule } from 'src/core/user-core/user-core.module';
import { UserInterestCoreModule } from 'src/core/user-interest-core/user-interest-core.module';
import { UserAuthModule } from '../auth/auth.module';
@Module({
imports: [UserCoreModule, UserInterestCoreModule, UserAuthModule],
controllers: [ProfileController],
providers: [ProfileService],
exports: [ProfileService],
})
export class ProfileModule {}
|