;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

This commit is contained in:
2024-10-27 05:45:12 +03:00
parent 3388da7280
commit 09b5106538
20 changed files with 82 additions and 76 deletions

View File

@@ -2,7 +2,7 @@ import express from 'express';
import UserRouter from './routers/user.js';
import GroupRouter from './routers/group.js';
import AbstractProductRouter from './routers/abstractproduct.js';
import log from './utils/log.js'
import log from './utils/log.js';
import config from '../config.json' with {type: "json"};
import ProductRouter from './routers/product.js';
@@ -21,4 +21,4 @@ app.use('/api/category', CategoryRouter);
app.listen(config.port, () => {
log.info(`Application has started on port ${config.port}`)
})
});