create get and post home api

This commit is contained in:
faris Aljohari
2024-03-10 22:43:02 +03:00
parent a553481c9a
commit 63411cada4
11 changed files with 183 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import config from './config';
import { AuthenticationModule } from './auth/auth.module';
import { AuthenticationController } from './auth/controllers/authentication.controller';
import { UserModule } from './users/user.module';
import { HomeModule } from './home/home.module';
@Module({
imports: [
ConfigModule.forRoot({
@ -11,6 +12,7 @@ import { UserModule } from './users/user.module';
}),
AuthenticationModule,
UserModule,
HomeModule,
],
controllers: [AuthenticationController],
})