class Player { constructor(id, pos, nb_goal) { this.id = id; this.pos = pos; this.nb_goal = nb_goal; } } export { Player }