You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-05 06:00:24 +02:00
10 lines
259 B
Dart
10 lines
259 B
Dart
![]() |
import 'package:immich_mobile/models/auth/login_response.model.dart';
|
||
|
|
||
|
abstract interface class IAuthApiRepository {
|
||
|
Future<LoginResponse> login(String email, String password);
|
||
|
|
||
|
Future<void> logout();
|
||
|
|
||
|
Future<void> changePassword(String newPassword);
|
||
|
}
|