mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-01 02:39:29 +08:00
13 lines
197 B
JavaScript
13 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 };
|