mirror of
https://github.com/appwrite/sdk-for-flutter.git
synced 2026-04-07 19:27:41 +00:00
45 lines
1.2 KiB
Dart
45 lines
1.2 KiB
Dart
/// Appwrite Flutter SDK
|
|
///
|
|
/// This SDK is compatible with Appwrite server version 1.9.x.
|
|
/// For older versions, please check
|
|
/// [previous releases](https://github.com/appwrite/sdk-for-flutter/releases).
|
|
library appwrite;
|
|
|
|
import 'dart:async';
|
|
import 'dart:math';
|
|
import 'dart:typed_data';
|
|
import 'dart:convert';
|
|
|
|
import 'src/enums.dart';
|
|
import 'src/service.dart';
|
|
import 'src/input_file.dart';
|
|
import 'models.dart' as models;
|
|
import 'enums.dart' as enums;
|
|
import 'src/upload_progress.dart';
|
|
|
|
export 'src/response.dart';
|
|
export 'src/client.dart';
|
|
export 'src/exception.dart';
|
|
export 'src/realtime.dart';
|
|
export 'src/upload_progress.dart';
|
|
export 'src/realtime_subscription.dart';
|
|
export 'src/realtime_message.dart';
|
|
export 'src/input_file.dart';
|
|
|
|
part 'query.dart';
|
|
part 'permission.dart';
|
|
part 'role.dart';
|
|
part 'id.dart';
|
|
part 'channel.dart';
|
|
part 'operator.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/messaging.dart';
|
|
part 'services/storage.dart';
|
|
part 'services/tables_db.dart';
|
|
part 'services/teams.dart';
|