cloudworker-proxy
Version:
An api gateway for cloudflare workers
18 lines (14 loc) • 415 B
JavaScript
;
const { GetUserInformation } = require('../sdk/cam/index');
class UserInformation {
async getUserInformation() {
const userInformation = new GetUserInformation();
const auth = {
SecretId: '',
SecretKey: '',
};
console.log(await userInformation.getUserInformation(auth));
}
}
const getUserInformation = new UserInformation();
getUserInformation.getUserInformation();