aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/app/Controllers/Http/ServiceController.js
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-09-29 08:33:01 +0200
committerLibravatar GitHub <noreply@github.com>2021-09-29 08:33:01 +0200
commit20574717c4b54635a8b757fccce64f2a98614997 (patch)
tree0f671af98b8253b13149c7bf5262d0b137881ecf /src/internal-server/app/Controllers/Http/ServiceController.js
parent5.6.3-nightly.17 [skip ci] (diff)
downloadferdium-app-20574717c4b54635a8b757fccce64f2a98614997.tar.gz
ferdium-app-20574717c4b54635a8b757fccce64f2a98614997.tar.zst
ferdium-app-20574717c4b54635a8b757fccce64f2a98614997.zip
chore: update various outdated node_modules (#1969)
Diffstat (limited to 'src/internal-server/app/Controllers/Http/ServiceController.js')
-rw-r--r--src/internal-server/app/Controllers/Http/ServiceController.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal-server/app/Controllers/Http/ServiceController.js b/src/internal-server/app/Controllers/Http/ServiceController.js
index ae463617d..133473b68 100644
--- a/src/internal-server/app/Controllers/Http/ServiceController.js
+++ b/src/internal-server/app/Controllers/Http/ServiceController.js
@@ -2,7 +2,7 @@ const Service = use('App/Models/Service');
2const { validateAll } = use('Validator'); 2const { validateAll } = use('Validator');
3const Env = use('Env'); 3const Env = use('Env');
4 4
5const uuid = require('uuid/v4'); 5const { v4: uuid } = require('uuid');
6const path = require('path'); 6const path = require('path');
7const fs = require('fs-extra'); 7const fs = require('fs-extra');
8const { LOCAL_HOSTNAME, DEFAULT_SERVICE_ORDER } = require('../../../../config'); 8const { LOCAL_HOSTNAME, DEFAULT_SERVICE_ORDER } = require('../../../../config');