This commit adds the Payment and ProxyUser entities to the database.

This commit is contained in:
Errormacr
2023-11-24 17:14:11 +03:00
parent c76c61c23c
commit f42741a481
4 changed files with 57 additions and 2 deletions

View File

@@ -4,8 +4,10 @@ import { User } from './database/user.entity';
import { Admin } from './database/admin.entity';
import { Post } from './database/post.entity';
import { Image } from './database/image.entity';
import { Payment } from './database/payment.entity';
import { ProxyUser } from './database/ProxyUser.entity';
@Module({
imports: [TypeOrmModule.forFeature([User, Admin, Post, Image])],
imports: [TypeOrmModule.forFeature([User, Admin, Post, Image, Payment, ProxyUser])],
exports: [TypeOrmModule],
})
export class LibsModule {}