initial vibecoded release

This commit is contained in:
cyberbread-ru
2026-05-15 16:35:12 +04:00
commit 993478e6e3
78 changed files with 3044 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import '../models/note.dart';
abstract class NoteRepository {
Future<List<Note>> getAll();
Future<Note?> getById(String id);
Future<Note> save(Note note);
Future<void> delete(String id);
}