-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathappwrite.dart
More file actions
36 lines (32 loc) · 917 Bytes
/
appwrite.dart
File metadata and controls
36 lines (32 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
library appwrite;
import 'dart:async';
import 'dart:convert';
import 'dart:math';
import 'dart:typed_data';
import 'models.dart' as models;
import 'src/call_handlers/offline_call_handler.dart';
import 'src/call_params.dart';
import 'src/enums.dart';
import 'src/input_file.dart';
import 'src/service.dart';
import 'src/upload_progress.dart';
export 'src/client.dart';
export 'src/exception.dart';
export 'src/input_file.dart';
export 'src/realtime.dart';
export 'src/realtime_message.dart';
export 'src/realtime_subscription.dart';
export 'src/response.dart';
export 'src/upload_progress.dart';
part 'id.dart';
part 'permission.dart';
part 'query.dart';
part 'role.dart';
part 'services/account.dart';
part 'services/avatars.dart';
part 'services/databases.dart';
part 'services/functions.dart';
part 'services/graphql.dart';
part 'services/locale.dart';
part 'services/storage.dart';
part 'services/teams.dart';