Ruben Gres
first commit
ec3efd7
raw
history blame
197 Bytes
/** @type {import('./types').Client} */
let client;
/**
* @param {{
* client: import('./types').Client;
* }} opts
*/
function init(opts) {
client = opts.client;
}
export { client, init };