mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 16:38:32 +00:00
8 lines
95 B
Dart
8 lines
95 B
Dart
|
|
import 'client.dart';
|
||
|
|
|
||
|
|
class Service {
|
||
|
|
final Client client;
|
||
|
|
|
||
|
|
const Service(this.client);
|
||
|
|
}
|