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:
parent
d9bb55a2a9
commit
496508ee4d
27 changed files with 23 additions and 23 deletions
16
src/plugins/syncPlay/core/index.js
Normal file
16
src/plugins/syncPlay/core/index.js
Normal 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
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue