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:
parent
b62bf79221
commit
5d24f36133
@ -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]
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user