mirror of
https://github.com/immich-app/immich.git
synced 2024-11-19 11:58:57 -07:00
19 lines
328 B
Dart
19 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);
|
|
}
|
|
}
|