1
0
Fork 0
mirror of synced 2024-06-28 11:10:46 +12:00
appwrite/app/sdks/server-nodejs/lib/service.js
2020-02-23 20:09:34 +02:00

10 lines
143 B
JavaScript

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