mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 11:56:46 +01:00
18 lines
328 B
Dart
18 lines
328 B
Dart
import 'package:hive/hive.dart';
|
|
import 'package:immich_mobile/constants/hive_box.dart';
|
|
|
|
class LocalStorageService {
|
|
late Box _box;
|
|
|
|
LocalStorageService() {
|
|
_box = Hive.box(userInfoBox);
|
|
}
|
|
|
|
T get<T>(String key) {
|
|
return _box.get(key);
|
|
}
|
|
|
|
put<T>(String key, T value) {
|
|
return _box.put(key, value);
|
|
}
|
|
}
|