ft_transcendence/frontend/static/js/api/tournament/tournament.js

19 lines
205 B
JavaScript
Raw Normal View History

2023-12-20 13:15:47 -05:00
import { Client } from "./client.js";
class Tourmanent
{
/**
* @param {Client} client
*/
constructor(client)
{
/**
* @type {Client}
*/
this.client = client
}
}
export { Tourmanent }