2020-01-18 10:19:20 +00:00
|
|
|
import * as deezer from './services/deezer/index.js';
|
|
|
|
import * as google from './services/google/index.js';
|
|
|
|
import * as itunes from './services/itunes/index.js';
|
|
|
|
import * as spotify from './services/spotify/index.js';
|
|
|
|
import * as youtube from './services/youtube/index.js';
|
2015-01-06 12:58:57 +00:00
|
|
|
|
2020-01-18 10:19:20 +00:00
|
|
|
const services = [
|
|
|
|
deezer,
|
|
|
|
google,
|
|
|
|
itunes,
|
|
|
|
spotify,
|
|
|
|
youtube,
|
|
|
|
]
|
2015-08-20 23:22:57 +01:00
|
|
|
|
|
|
|
export default services;
|