mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 17:26:18 +01:00
11 lines
277 B
Dart
11 lines
277 B
Dart
import 'package:nc_photos/account.dart';
|
|
import 'package:nc_photos/entity/file.dart';
|
|
|
|
class LsSingleFile {
|
|
LsSingleFile(this.fileRepo);
|
|
|
|
Future<File> call(Account account, String path) =>
|
|
fileRepo.listSingle(account, File(path: path));
|
|
|
|
final FileRepo fileRepo;
|
|
}
|