Skip to content

Commit

Permalink
feat: ✨ import UsersModule in AppModule
Browse files Browse the repository at this point in the history
  • Loading branch information
zhumeisongsong committed Nov 8, 2024
1 parent aaade29 commit 9f24bec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/users-application/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ import { Module } from '@nestjs/common';

import { AppController } from './app.controller';
import { AppService } from './app.service';
import { UsersModule } from '../users/users.module';

@Module({
imports: [],
imports: [UsersModule],
controllers: [AppController],
providers: [AppService],
})
Expand Down

0 comments on commit 9f24bec

Please sign in to comment.