guard creation and more

This commit is contained in:
IO
2024-06-06 20:32:46 -06:00
parent f568730942
commit 31d6f2c65d
11 changed files with 105 additions and 62 deletions
+3
View File
@@ -1,8 +1,11 @@
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { UsersService } from './users.service';
import { User } from './entities/user.entity';
@Module({
imports: [TypeOrmModule.forFeature([User])],
providers: [UsersService],
exports: [UsersService],
})