mirror of
https://github.com/vinliao/nashboard-old.git
synced 2025-12-17 04:35:15 +01:00
14 lines
197 B
JavaScript
14 lines
197 B
JavaScript
/** @type {import('./types').Client} */
|
|
let client;
|
|
|
|
/**
|
|
* @param {{
|
|
* client: import('./types').Client;
|
|
* }} opts
|
|
*/
|
|
function init(opts) {
|
|
client = opts.client;
|
|
}
|
|
|
|
export { client, init };
|