mirror of
https://github.com/janishutz/MusicPlayerV2.git
synced 2025-11-25 13:04:23 +00:00
16 lines
337 B
TypeScript
16 lines
337 B
TypeScript
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const getSubscriptions = ( _uid: string ) => {
|
|
return [
|
|
{
|
|
'id': 'com.janishutz.MusicPlayer.subscription',
|
|
'expires': new Date().getTime() + 200000,
|
|
'status': true
|
|
}
|
|
];
|
|
};
|
|
|
|
export default {
|
|
getSubscriptions,
|
|
};
|
|
|