aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tools/peertube-repl.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tools/peertube-repl.ts')
-rw-r--r--server/tools/peertube-repl.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/server/tools/peertube-repl.ts b/server/tools/peertube-repl.ts
index a38d51801..eb0a776b8 100644
--- a/server/tools/peertube-repl.ts
+++ b/server/tools/peertube-repl.ts
@@ -4,7 +4,6 @@ registerTSPaths()
4import * as repl from 'repl' 4import * as repl from 'repl'
5import * as path from 'path' 5import * as path from 'path'
6import * as _ from 'lodash' 6import * as _ from 'lodash'
7import { uuidv1, uuidv3, uuidv4, uuidv5 } from 'uuid'
8import * as Sequelize from 'sequelize' 7import * as Sequelize from 'sequelize'
9import * as YoutubeDL from 'youtube-dl' 8import * as YoutubeDL from 'youtube-dl'
10import { initDatabaseModels, sequelizeTypescript } from '../initializers/database' 9import { initDatabaseModels, sequelizeTypescript } from '../initializers/database'
@@ -15,7 +14,6 @@ import * as modelsUtils from '../models/utils'
15import * as coreUtils from '../helpers/core-utils' 14import * as coreUtils from '../helpers/core-utils'
16import * as ffmpegUtils from '../helpers/ffmpeg-utils' 15import * as ffmpegUtils from '../helpers/ffmpeg-utils'
17import * as peertubeCryptoUtils from '../helpers/peertube-crypto' 16import * as peertubeCryptoUtils from '../helpers/peertube-crypto'
18import * as signupUtils from '../helpers/signup'
19import * as utils from '../helpers/utils' 17import * as utils from '../helpers/utils'
20import * as YoutubeDLUtils from '../helpers/youtube-dl' 18import * as YoutubeDLUtils from '../helpers/youtube-dl'
21 19
@@ -32,10 +30,6 @@ const start = async () => {
32 env: process.env, 30 env: process.env,
33 lodash: _, 31 lodash: _,
34 path, 32 path,
35 uuidv1,
36 uuidv3,
37 uuidv4,
38 uuidv5,
39 cli, 33 cli,
40 logger, 34 logger,
41 constants, 35 constants,
@@ -50,7 +44,6 @@ const start = async () => {
50 coreUtils, 44 coreUtils,
51 ffmpegUtils, 45 ffmpegUtils,
52 peertubeCryptoUtils, 46 peertubeCryptoUtils,
53 signupUtils,
54 utils, 47 utils,
55 YoutubeDLUtils 48 YoutubeDLUtils
56 } 49 }