mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 10:56:47 +01:00
4 lines
108 B
Dart
4 lines
108 B
Dart
|
abstract interface class IDatabaseRepository {
|
||
|
Future<T> transaction<T>(Future<T> Function() callback);
|
||
|
}
|