1
0
Fork 0
mirror of synced 2024-07-01 12:40:34 +12:00
appwrite/app/sdks/server-nodejs/lib/service.js

10 lines
143 B
JavaScript
Raw Normal View History

2020-01-28 10:50:41 +13:00
class Service {
/**
* @param client
*/
constructor(client) {
this.client = client;
}
}
module.exports = Service;