mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 09:59:00 -07:00
202082f62e
* UserService * PartnerService * HashService * MemoryService * PersonService * SearchService * StackService
12 lines
285 B
Dart
12 lines
285 B
Dart
import 'dart:typed_data';
|
|
|
|
import 'package:immich_mobile/entities/user.entity.dart';
|
|
|
|
abstract interface class IUserApiRepository {
|
|
Future<List<User>> getAll();
|
|
Future<({String profileImagePath})> createProfileImage({
|
|
required String name,
|
|
required Uint8List data,
|
|
});
|
|
}
|