mirror of
https://bitbucket.org/walplanet/deemix-gui
synced 2026-01-15 16:22:52 -03:00
13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
import { Server as WsServer } from 'ws'
|
|
import { logger } from '../../helpers/logger'
|
|
import { DeemixApp } from '../../app'
|
|
|
|
const eventName = 'cancelAllDownloads'
|
|
|
|
const cb = (_: any, __: any, ___: WsServer, deemix: DeemixApp) => {
|
|
deemix.cancelAllDownloads()
|
|
logger.info(`Queue cleared`)
|
|
}
|
|
|
|
export default { eventName, cb }
|