t-comm
Version:
专业、稳定、纯粹的工具库
16 lines (14 loc) • 370 B
JavaScript
/**
* 获取 cos-nodejs-sdk-v5 库
* cos-nodejs-sdk-v5 是腾讯云对象存储 COS 的 Node.js SDK
* @returns cos-nodejs-sdk-v5 库
* @example
* ```ts
* const COS = getCosNodejsSdkV5();
* const cos = new COS({ SecretId: '...', SecretKey: '...' });
* ```
*/
function getCosNodejsSdkV5() {
return require('cos-nodejs-sdk-v5');
}
export { getCosNodejsSdkV5 };