1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* jshint esnext:true */
'use strict';
module.exports = (seq, Seq) => {
let Match = seq.import("./models/match.js"),
Asset = seq.import("./models/asset.js"),
Roster = seq.import("./models/roster.js"),
Participant = seq.import("./models/participant.js"),
ParticipantExt = seq.import("./models/participant_ext.js"),
ParticipantItemUse = seq.import("./models/participant_item_use.js"),
Player = seq.import("./models/player.js"),
PlayerExt = seq.import("./models/player_ext.js"),
Item = seq.import("./models/item.js");
return {Match, Roster, Participant, ParticipantExt, ParticipantItemUse, Player, PlayerExt, Asset, Item};
};
|