15 lines
368 B
JavaScript
15 lines
368 B
JavaScript
export class CTYunSmsInstance {
|
|
accessKey;
|
|
securityKey;
|
|
endpoint;
|
|
constructor(accessKey, securityKey, endpoint) {
|
|
this.accessKey = accessKey;
|
|
this.securityKey = securityKey;
|
|
this.endpoint = endpoint;
|
|
}
|
|
async sendSms(params) {
|
|
console.log('react-native走不到这里[ali/sms.native');
|
|
return {};
|
|
}
|
|
}
|