arrowdb
Version:
Appcelerator ArrowDB SDK for NodeJS
38 lines (36 loc) • 513 B
JavaScript
var arrowDBObject = {
KeyValues: {
methods: {
append: {
httpMethod: 'PUT'
},
count: {
httpMethod: 'GET'
},
delete: {
httpMethod: 'DELETE'
},
remove: {
httpMethod: 'DELETE',
restMethod: 'delete'
},
get: {
httpMethod: 'GET'
},
incrby: {
httpMethod: 'PUT'
},
increment: {
httpMethod: 'PUT',
restMethod: 'incrby'
},
query: {
httpMethod: 'GET'
},
set: {
httpMethod: 'PUT'
}
}
}
};
module.exports = arrowDBObject;