1
0
Fork 0
mirror of synced 2024-07-05 06:31:08 +12:00
appwrite/app/sdks/node/lib/service.js

10 lines
143 B
JavaScript
Raw Normal View History

2019-06-10 06:13:55 +12:00
class Service {
/**
* @param client
*/
constructor(client) {
this.client = client;
}
}
module.exports = Service;