refactor(mobile): secure_storage.interface.dart ()

* refactor(mobile): secure_storage.interface.dart

* fix: lint
This commit is contained in:
Alex 2025-06-20 09:12:07 -05:00 committed by GitHub
parent 9c25b8ba7d
commit a6b0869714
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 14 deletions
mobile/lib/interfaces

View file

@ -1,5 +0,0 @@
abstract interface class ISecureStorageRepository {
Future<String?> read(String key);
Future<void> write(String key, String value);
Future<void> delete(String key);
}