Rearranged handlers

This commit is contained in:
Geomitron
2020-05-21 14:17:20 -04:00
parent 7a13739ed0
commit 64701e4909
4 changed files with 12 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
import { IPCInvokeHandler } from '../shared/IPCHandler'
import { AlbumArtResult } from '../shared/interfaces/songDetails.interface'
import { IPCInvokeHandler } from '../../shared/IPCHandler'
import { AlbumArtResult } from '../../shared/interfaces/songDetails.interface'
import * as needle from 'needle'
import { serverURL } from '../shared/Paths'
import { serverURL } from '../../shared/Paths'
/**
* Handles the 'album-art' event.

View File

@@ -1,6 +1,6 @@
import { IPCInvokeHandler } from '../shared/IPCHandler'
import { VersionResult } from '../shared/interfaces/songDetails.interface'
import { serverURL } from '../shared/Paths'
import { IPCInvokeHandler } from '../../shared/IPCHandler'
import { VersionResult } from '../../shared/interfaces/songDetails.interface'
import { serverURL } from '../../shared/Paths'
import * as needle from 'needle'
/**

View File

@@ -1,7 +1,7 @@
import { IPCInvokeHandler } from '../shared/IPCHandler'
import { SongSearch, SearchType, SongResult } from '../shared/interfaces/search.interface'
import { IPCInvokeHandler } from '../../shared/IPCHandler'
import { SongSearch, SearchType, SongResult } from '../../shared/interfaces/search.interface'
import * as needle from 'needle'
import { serverURL } from '../shared/Paths'
import { serverURL } from '../../shared/Paths'
/**
* Handles the 'song-search' event.
*/

View File

@@ -1,7 +1,7 @@
import { IPCInvokeHandler } from '../shared/IPCHandler'
import { VersionResult } from '../shared/interfaces/songDetails.interface'
import { IPCInvokeHandler } from '../../shared/IPCHandler'
import { VersionResult } from '../../shared/interfaces/songDetails.interface'
import * as needle from 'needle'
import { serverURL } from '../shared/Paths'
import { serverURL } from '../../shared/Paths'
/**
* Handles the 'song-details' event.