mirror of
https://github.com/appwrite/appwrite
synced 2026-05-02 10:57:18 +00:00
10 lines
143 B
JavaScript
10 lines
143 B
JavaScript
|
|
class Service {
|
||
|
|
/**
|
||
|
|
* @param client
|
||
|
|
*/
|
||
|
|
constructor(client) {
|
||
|
|
this.client = client;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = Service;
|