File size: 237 Bytes
f3abb0d
 
405ccd5
f3abb0d
 
405ccd5
f3abb0d
 
1
2
3
4
5
6
7
8
9
import { Module } from '@nestjs/common';
import { UserAuthModule } from './auth/auth.module';
import { ProfileModule } from './profile/profile.module';

@Module({
  imports: [UserAuthModule, ProfileModule],
})
export class UserModule {}