1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Move SyncPlay code to plugin directory

This commit is contained in:
Bill Thornton 2022-10-01 02:57:30 -04:00
parent d9bb55a2a9
commit 496508ee4d
27 changed files with 23 additions and 23 deletions

View file

@ -0,0 +1,16 @@
import * as Helper from './Helper';
import ManagerClass from './Manager';
import PlayerFactoryClass from './players/PlayerFactory';
import GenericPlayer from './players/GenericPlayer';
const PlayerFactory = new PlayerFactoryClass();
const Manager = new ManagerClass(PlayerFactory);
export default {
Helper,
Manager,
PlayerFactory,
Players: {
GenericPlayer
}
};