19 lines
205 B
JavaScript
19 lines
205 B
JavaScript
import { Client } from "./client.js";
|
|
|
|
class Tourmanent
|
|
{
|
|
/**
|
|
* @param {Client} client
|
|
*/
|
|
constructor(client)
|
|
{
|
|
/**
|
|
* @type {Client}
|
|
*/
|
|
this.client = client
|
|
}
|
|
|
|
|
|
}
|
|
|
|
export { Tourmanent } |