ft_transcendence/frontend/static/js/api/tournament/tournament.js
2023-12-20 19:15:47 +01:00

19 lines
205 B
JavaScript

import { Client } from "./client.js";
class Tourmanent
{
/**
* @param {Client} client
*/
constructor(client)
{
/**
* @type {Client}
*/
this.client = client
}
}
export { Tourmanent }