feat(app): add UploadsModule
Included UploadsModule in the app module imports array. This addition facilitates handling file upload capabilities within the application.
This commit is contained in:
parent
b558d344e1
commit
fab662ba44
@ -8,6 +8,7 @@ import { LogService } from "./logger/logger.service";
|
|||||||
import { ProductsModule } from './products/products.module';
|
import { ProductsModule } from './products/products.module';
|
||||||
import { StocksModule } from './stocks/stocks.module';
|
import { StocksModule } from './stocks/stocks.module';
|
||||||
import { TransactionsModule } from './transactions/transactions.module';
|
import { TransactionsModule } from './transactions/transactions.module';
|
||||||
|
import { UploadsModule } from './uploads/uploads.module';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
@ -26,6 +27,7 @@ import { TransactionsModule } from './transactions/transactions.module';
|
|||||||
ProductsModule,
|
ProductsModule,
|
||||||
StocksModule,
|
StocksModule,
|
||||||
TransactionsModule,
|
TransactionsModule,
|
||||||
|
UploadsModule,
|
||||||
],
|
],
|
||||||
exports: [LogService],
|
exports: [LogService],
|
||||||
controllers: [],
|
controllers: [],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user