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:
@@ -3,9 +3,10 @@ import { StocksController } from './stocks.controller';
|
|||||||
import { StocksService } from './stocks.service';
|
import { StocksService } from './stocks.service';
|
||||||
import { DrizzleModule } from "src/drizzle/drizzle.module";
|
import { DrizzleModule } from "src/drizzle/drizzle.module";
|
||||||
import { ProductsModule } from "src/products/products.module";
|
import { ProductsModule } from "src/products/products.module";
|
||||||
|
import { CredentialsModule } from "src/credentials/credentials.module";
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [DrizzleModule, ProductsModule],
|
imports: [DrizzleModule, ProductsModule, CredentialsModule],
|
||||||
controllers: [StocksController],
|
controllers: [StocksController],
|
||||||
providers: [StocksService]
|
providers: [StocksService]
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user