client-swift
Version:
Object Storage OpenStack Swift client for Node.js
23 lines (18 loc) • 370 B
JavaScript
// abstract class
module.exports = class AuthBase {
constructor(data) {
this.data = data
}
unimplemented(method) {
return new Error('not implemented ' + method)
}
authOptions(url) {
this.unimplemented("authOptions")
}
token(response) {
this.unimplemented("token")
}
storageUrl(response) {
this.unimplemented("storageUrl")
}
}