2023-01-23 23:27:36 +00:00

11 lines
241 B
JavaScript

import SpotifySyncModel from "./cores/spotifyCore"
export default class SyncModel {
static get bridge() {
return window.app?.api.withEndpoints("main")
}
static get spotifyCore() {
return SpotifySyncModel
}
}