mirror of
https://github.com/immich-app/immich.git
synced 2025-01-28 00:59:18 -05:00
8 lines
220 B
Dart
8 lines
220 B
Dart
|
import 'package:immich_mobile/models/upload/share_intent_attachment.model.dart';
|
||
|
|
||
|
abstract interface class IShareHandlerRepository {
|
||
|
void Function(List<ShareIntentAttachment>)? onSharedMedia;
|
||
|
|
||
|
Future<void> init();
|
||
|
}
|