mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
move maps service
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { ipcMain } from "electron";
|
||||
import { LocalMapsManagerService } from "../services/maps/local-maps-manager.service";
|
||||
import { LocalMapsManagerService } from "../services/additional-content/local-maps-manager.service";
|
||||
import { UtilsService } from "../services/utils.service";
|
||||
import { BSVersion } from "shared/bs-version.interface";
|
||||
import { IpcRequest } from "shared/models/ipc";
|
||||
|
||||
+1
-1
@@ -16,7 +16,7 @@ import { UtilsService } from './services/utils.service';
|
||||
import { WindowManagerService } from './services/window-manager.service';
|
||||
import { DeepLinkService } from './services/deep-link.service';
|
||||
import { AppWindow } from 'shared/models/window-manager/app-window.model';
|
||||
import { LocalMapsManagerService } from './services/maps/local-maps-manager.service';
|
||||
import { LocalMapsManagerService } from './services/additional-content/local-maps-manager.service';
|
||||
|
||||
export const PRELOAD_PATH = app.isPackaged ? path.join(__dirname, 'preload.js') : path.join(__dirname, '../../.erb/dll/preload.js')
|
||||
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
export interface Playlist {
|
||||
playlistTitle: string,
|
||||
playlistAuthor: string,
|
||||
playlistDescription?: string,
|
||||
image: string,
|
||||
customData: unknown,
|
||||
songs: PlaylistSong[]
|
||||
}
|
||||
|
||||
export interface PlaylistSong {
|
||||
key: string,
|
||||
hash: string,
|
||||
songName: string,
|
||||
uploader?: string
|
||||
}
|
||||
Reference in New Issue
Block a user