mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-28 22:28:24 -04:00
9 lines
158 B
JavaScript
9 lines
158 B
JavaScript
import { defineStore } from 'pinia'
|
|
|
|
export const useServicesStore = defineStore('ServicesStore', {
|
|
state: () => ({
|
|
lastfm: {},
|
|
spotify: {}
|
|
})
|
|
})
|