feat(stocks.module): add CredentialsModule to imports

A new import, CredentialsModule, has been added to the Stocks module. This module is now among the imported dependencies in the Stocks module, expanding its functionality with the features provided by CredentialsModule.
This commit is contained in:
Mathis H (Avnyr) 2024-07-15 14:37:01 +02:00
parent b62bf79221
commit 5d24f36133
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -3,9 +3,10 @@ import { StocksController } from './stocks.controller';
import { StocksService } from './stocks.service';
import { DrizzleModule } from "src/drizzle/drizzle.module";
import { ProductsModule } from "src/products/products.module";
import { CredentialsModule } from "src/credentials/credentials.module";
@Module({
imports: [DrizzleModule, ProductsModule],
imports: [DrizzleModule, ProductsModule, CredentialsModule],
controllers: [StocksController],
providers: [StocksService]
})