mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
12 lines
155 B
Java
12 lines
155 B
Java
|
|
package .services;
|
||
|
|
|
||
|
|
import .Client;
|
||
|
|
|
||
|
|
abstract class Service {
|
||
|
|
final Client client;
|
||
|
|
|
||
|
|
Service(Client client) {
|
||
|
|
this.client = client;
|
||
|
|
}
|
||
|
|
}
|