Начальная структура директорий, каркас проекта

This commit is contained in:
Book Pauk
2022-08-15 18:38:31 +07:00
parent 5739fef2b7
commit c3a0ce183e
19 changed files with 16271 additions and 0 deletions

7
server/core/utils.js Normal file
View File

@@ -0,0 +1,7 @@
function versionText(config) {
return `${config.name} v${config.version}, Node.js ${process.version}`;
}
module.exports = {
versionText,
};