Initial draft

This commit is contained in:
Dennis Nemec
2025-09-20 16:14:06 +02:00
commit b19a6e1cd4
219 changed files with 10317 additions and 0 deletions

11
lib/repository.dart Normal file
View File

@ -0,0 +1,11 @@
import 'package:hl_lieferservice/persistence.dart';
abstract class BaseRepository {
final String path;
const BaseRepository({required this.path});
Future<bool> exist() {
return FileStorage().exist(path);
}
}