]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tools/peertube-repl.ts
Translated using Weblate (Spanish)
[github/Chocobozzz/PeerTube.git] / server / tools / peertube-repl.ts
index 7c936ae0d8f74447d7c847aec75aebc9b28c9404..63f7667a16632c8c4df6d82a71c98056633d2963 100644 (file)
@@ -1,15 +1,13 @@
 import { registerTSPaths } from '../helpers/register-ts-paths'
+registerTSPaths()
+
 import * as repl from 'repl'
 import * as path from 'path'
 import * as _ from 'lodash'
-import * as uuidv1 from 'uuid/v1'
-import * as uuidv3 from 'uuid/v3'
-import * as uuidv4 from 'uuid/v4'
-import * as uuidv5 from 'uuid/v5'
+import { uuidv1, uuidv3, uuidv4, uuidv5 } from 'uuid'
 import * as Sequelize from 'sequelize'
 import * as YoutubeDL from 'youtube-dl'
-
-import { initDatabaseModels, sequelizeTypescript } from '../initializers'
+import { initDatabaseModels, sequelizeTypescript } from '../initializers/database'
 import * as cli from '../tools/cli'
 import { logger } from '../helpers/logger'
 import * as constants from '../initializers/constants'
@@ -17,12 +15,9 @@ import * as modelsUtils from '../models/utils'
 import * as coreUtils from '../helpers/core-utils'
 import * as ffmpegUtils from '../helpers/ffmpeg-utils'
 import * as peertubeCryptoUtils from '../helpers/peertube-crypto'
-import * as signupUtils from '../helpers/signup'
 import * as utils from '../helpers/utils'
 import * as YoutubeDLUtils from '../helpers/youtube-dl'
 
-registerTSPaths()
-
 const start = async () => {
   await initDatabaseModels(true)
 
@@ -54,7 +49,6 @@ const start = async () => {
         coreUtils,
         ffmpegUtils,
         peertubeCryptoUtils,
-        signupUtils,
         utils,
         YoutubeDLUtils
       }
@@ -86,7 +80,6 @@ const start = async () => {
   }
   replServer.defineCommand('reset', resetCommand)
   replServer.defineCommand('r', resetCommand)
-
 }
 
 start()