1
0
Fork 0
mirror of synced 2024-08-01 11:32:23 +12:00
appwrite/app/sdks/nodejs/lib/service.js
2020-01-27 23:50:41 +02:00

10 lines
143 B
JavaScript

class Service {
/**
* @param client
*/
constructor(client) {
this.client = client;
}
}
module.exports = Service;