oak-external-sdk/es/service/ali/Sms.web.js

18 lines
428 B
JavaScript

export class AliSmsInstance {
accessKeyId;
accessKeySecret;
region;
endpoint;
client;
constructor(accessKeyId, accessKeySecret, region, endpoint) {
this.accessKeyId = accessKeyId;
this.accessKeySecret = accessKeySecret;
this.region = region;
this.endpoint = endpoint;
}
async sendSms(params) {
console.log('web走不到这里');
return {};
}
}