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 { StocksModule } from './stocks/stocks.module';
|
||||
import { TransactionsModule } from './transactions/transactions.module';
|
||||
import { UploadsModule } from './uploads/uploads.module';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
@ -26,6 +27,7 @@ import { TransactionsModule } from './transactions/transactions.module';
|
||||
ProductsModule,
|
||||
StocksModule,
|
||||
TransactionsModule,
|
||||
UploadsModule,
|
||||
],
|
||||
exports: [LogService],
|
||||
controllers: [],
|
||||
|
Loading…
x
Reference in New Issue
Block a user